Merge pull request #13396 from Budibase/fix/devtools-preview-loading

[Fix] Devtools crashing app preview
This commit is contained in:
Adria Navarro 2024-04-03 16:06:46 +02:00 committed by GitHub
commit 23b5b0515e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -23,6 +23,6 @@
label="Components"
value={$componentStore.mountedComponentCount}
/>
<DevToolsStat label="User" value={$authStore.email} />
<DevToolsStat label="Role" value={$authStore.roleId} />
<DevToolsStat label="User" value={$authStore?.email} />
<DevToolsStat label="Role" value={$authStore?.roleId} />
</Layout>