Compare commits

..

3 Commits

Author SHA1 Message Date
a911859841
empty address from ghost connect fixed
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2026-07-19 23:03:24 +03:00
8ac1d9a2e9
make telegram domain back because it is fixed now
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2026-07-15 15:02:14 +03:00
69b4c1c69e
change links because of telegram domain issues
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2026-07-14 13:47:39 +03:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "ghost-dao-interface", "name": "ghost-dao-interface",
"private": true, "private": true,
"version": "0.7.55", "version": "0.7.58",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -34,8 +34,8 @@ export const UnstableProviderProvider = ({ children }) => {
) )
const account = useMemo(() => { const account = useMemo(() => {
if (Array.isArray(accounts)) return accounts.at(0).address; if (Array.isArray(accounts)) return accounts?.at(0)?.address;
if (typeof accounts === 'string') return accounts.address; if (typeof accounts === 'string') return accounts?.address;
return undefined return undefined
}, [accounts]) }, [accounts])