Skip to content

Commit f36f1dd

Browse files
Small UI fix in Authenticate
1 parent 86ecf93 commit f36f1dd

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

src/features/flows/nRF54L15_cloud/evaluate/Authenticate.tsx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export default () => {
101101
return (
102102
<Main className="tw-min-h-0 tw-flex-1">
103103
<Main.Content heading="Register your device" fill>
104-
<div className="tw-flex tw-flex-col tw-gap-3">
104+
<div className="tw-flex tw-flex-col tw-gap-5">
105105
<div className="tw-flex tw-flex-col tw-gap-2">
106106
<p>
107107
Connect your device to cloud to capture crashes,
@@ -117,7 +117,7 @@ export default () => {
117117
</ol>
118118
</div>
119119
{isSignedIn ? (
120-
<div className="tw-flex tw-flex-col tw-gap-5 tw-border-t tw-border-gray-200 tw-pt-3">
120+
<div className="tw-flex tw-flex-col tw-gap-5 tw-border-t tw-border-gray-200 tw-pt-5">
121121
<div className="tw-flex tw-flex-row tw-justify-between">
122122
<p className="tw-leading-none">
123123
Signed in as{' '}
@@ -144,17 +144,6 @@ export default () => {
144144
</div>
145145
)}
146146

147-
{memfault.status === 'error' && (
148-
<IssueBox
149-
mdiIcon="mdi-lightbulb-alert-outline"
150-
color="tw-text-red"
151-
title={
152-
memfault.message ??
153-
'Failed to load organizations and projects'
154-
}
155-
/>
156-
)}
157-
158147
{memfault.status === 'success' && (
159148
<div className="tw-flex tw-flex-row tw-gap-2">
160149
<Dropdown
@@ -183,6 +172,17 @@ export default () => {
183172
/>
184173
</div>
185174
)}
175+
176+
{memfault.status === 'error' && (
177+
<IssueBox
178+
mdiIcon="mdi-lightbulb-alert-outline"
179+
color="tw-text-red"
180+
title={
181+
memfault.message ??
182+
'Failed to load organizations and projects'
183+
}
184+
/>
185+
)}
186186
</div>
187187
) : (
188188
<>

0 commit comments

Comments
 (0)