Skip to content

Commit

Permalink
fix(set-pubkey): missing pubkey
Browse files Browse the repository at this point in the history
  • Loading branch information
aliraza556 committed Oct 26, 2024
1 parent d0105fd commit 3e3f600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/App/Splash/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const Splash = () => {
const { appMetaData, setAppMetaData } = useAppStore((s) => s)
const { stats, setStats, setSeedQuestions } = useDataStore((s) => s)
const { schemas, setSchemas } = useSchemaStore((s) => s)
const { isAdmin } = useUserStore((s) => s)
const [isAdmin] = useUserStore((s) => [s.isAdmin, s.setPubKey])
const { open, visible } = useModal('onboardingFlow')
const [isLoading, setIsLoading] = useState(false)

Expand Down

0 comments on commit 3e3f600

Please sign in to comment.