Skip to content

Commit 619e064

Browse files
committed
fix(app): remove extra closing div tag causing JSX syntax error
The den-settings-panel.tsx had an extra </div> tag that closed the outer wrapper prematurely, leaving subsequent Show components as adjacent JSX elements without an enclosing tag.
1 parent ad0cae6 commit 619e064

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

apps/app/src/app/components/den-settings-panel.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,6 @@ export default function DenSettingsPanel(props: DenSettingsPanelProps) {
438438
<Show when={statusMessage() && !authError() && !workersError() && !orgsError()}>
439439
{(value) => <div class="rounded-xl border border-gray-6/60 bg-gray-1/60 px-3 py-2 text-xs text-gray-11">{value()}</div>}
440440
</Show>
441-
</div>
442441
</div>
443442

444443
<Show when={!isSignedIn()}>

0 commit comments

Comments
 (0)