Skip to content

Commit

Permalink
fix(elements): Wait for clerk to be set before proceeding to init (#3182
Browse files Browse the repository at this point in the history
)

* fix(elements): Wait for clerk to be set for proceeding to init

* chore(repo): Adds changeset
  • Loading branch information
BRKalow authored Apr 12, 2024
1 parent 7b0d2f5 commit 38802e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .changeset/dry-rings-reflect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ export const SignInRouterMachine = setup({
isLoading: false,
},
})),
},
'CLERK.SET': {
target: 'Init',
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ export const SignUpRouterMachine = setup({
isLoading: false,
},
})),
},
'CLERK.SET': {
target: 'Init',
},
},
Expand Down

0 comments on commit 38802e1

Please sign in to comment.