fix(ux): show api token description inline

This commit is contained in:
peaklabs-dev 2026-09-03 17:23:17 +02:00
parent 4f5b39b748
commit 2fc73bc357
No known key found for this signature in database

View file

@ -107,9 +107,13 @@ class="listbox-panel top-full! mt-1! w-full!" role="listbox">
@endcan
@if (session()->has('token'))
<x-application.settings-section title="Copy your token"
description="This value will not be shown again after you leave this page.">
<x-forms.copy-button :text="session('token')" />
<x-application.settings-section title="Copy your token">
<div class="flex flex-col gap-3">
<p class="text-sm text-neutral-500 dark:text-fg-dim">
This value will not be shown again after you leave this page.
</p>
<x-forms.copy-button :text="session('token')" />
</div>
</x-application.settings-section>
@endif