1
0
Fork 0
mirror of synced 2024-07-08 15:56:23 +12:00

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

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>