Skip to content

fix: update loading text and screen on redirect-page #714

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

dhvll
Copy link

@dhvll dhvll commented May 13, 2025

Title

fix: update loading text and screen on redirect-page

Description

fix #687

Notes & open questions

Change checklist

  • I have performed a self-review of my own code
  • I have made corresponding changes to the documentation if necessary (this includes comments as well)
  • I have added tests that prove my fix is effective or that my feature works

@2color 2color requested a review from SgtPooki May 14, 2025 11:35
Comment on lines 1 to 25
import React, {
useCallback,
useContext,
useEffect,
useMemo,
useState,
type ReactElement,
} from "react"
import Header from "../components/Header.jsx"
import LoadingIndicator from "../components/loading-indicator.jsx"
import { ConfigProvider } from "../context/config-context.jsx"
import {
ServiceWorkerContext,
ServiceWorkerProvider,
} from "../context/service-worker-context.jsx"
import { setConfig, type ConfigDb } from "../lib/config-db.js"
import { getSubdomainParts } from "../lib/get-subdomain-parts.js"
import { isConfigPage } from "../lib/is-config-page.js"
import { getUiComponentLogger, uiLogger } from "../lib/logger.js"
import { tellSwToReloadConfig } from "../lib/sw-comms.js"
import { translateIpfsRedirectUrl } from "../lib/translate-ipfs-redirect-url.js"
import "./default-page-styles.css"

const uiComponentLogger = getUiComponentLogger("redirect-page")
const log = uiLogger.forComponent("redirect-page")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you please be sure to make only changes where there are new changes, and follow existing code style?

Copy link
Member

@SgtPooki SgtPooki left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there are still many changes here not following our code style and changes to lines that don't need to exist.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

fix: update loading text and screen on redirect-page
2 participants