fix: Send user id when setting up an account (#8639)
This commit is contained in:
committed by
GitHub
parent
c0be43bdbe
commit
27f3166272
@@ -869,9 +869,9 @@ export default defineComponent({
|
||||
) {
|
||||
const onboardingResponse = await this.uiStore.getNextOnboardingPrompt();
|
||||
const promptTimeout =
|
||||
onboardingResponse.toast_sequence_number === 1 ? FIRST_ONBOARDING_PROMPT_TIMEOUT : 1000;
|
||||
onboardingResponse?.toast_sequence_number === 1 ? FIRST_ONBOARDING_PROMPT_TIMEOUT : 1000;
|
||||
|
||||
if (onboardingResponse.title && onboardingResponse.description) {
|
||||
if (onboardingResponse?.title && onboardingResponse?.description) {
|
||||
setTimeout(async () => {
|
||||
this.showToast({
|
||||
type: 'info',
|
||||
|
||||
Reference in New Issue
Block a user