Skip to content

Commit

Permalink
fix(onboarding-flow): implement onboarding functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
aliraza556 committed Oct 26, 2024
1 parent 68f7fee commit 3e12f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AppContainer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const AppContainer = () => {
const { appMetaData } = useAppStore((s) => s)

useEffect(() => {
if (!isAdmin && appMetaData?.title && !visible) {
if (isAdmin && !appMetaData?.title && !visible) {
open()
}
}, [isAdmin, appMetaData?.title, open, visible])
Expand Down

0 comments on commit 3e12f26

Please sign in to comment.