Skip to content

Instantly share code, notes, and snippets.

@pietro909
Created March 27, 2026 12:54
Show Gist options
  • Select an option

  • Save pietro909/d6e46ad30e7edb821035f0b7fb5d25a2 to your computer and use it in GitHub Desktop.

Select an option

Save pietro909/d6e46ad30e7edb821035f0b7fb5d25a2 to your computer and use it in GitHub Desktop.
diff --git a/src/screens/Apps/Dfx/Index.tsx b/src/screens/Apps/Dfx/Index.tsx
● diff --git a/src/screens/Apps/Dfx/Index.tsx b/src/screens/Apps/Dfx/Index.tsx
index ...... 100644
--- a/src/screens/Apps/Dfx/Index.tsx
+++ b/src/screens/Apps/Dfx/Index.tsx
@@ -3,7 +3,7 @@ import Padded from '../../../components/Padded'
import Header from '../../../components/Header'
import Content from '../../../components/Content'
import FlexCol from '../../../components/FlexCol'
-import Loading from '../../../components/Loading'
+import LoadingLogo from '../../../components/LoadingLogo'
import Text from '../../../components/Text'
import { WalletContext } from '../../../providers/wallet'
import { getReceivingAddresses } from '../../../lib/asp'
@@ -39,7 +39,7 @@ export default function AppDfx() {
authenticate()
}, [svcWallet])
- if (!dfxUrl && !error) return <Loading text='Connecting to DFX...' />
+ if (!dfxUrl && !error) return <LoadingLogo text='Connecting to DFX...' />
return (
<>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment