fix: use x-cloak instead of inline style to prevent FOUC
Replaced inline style="display: none;" with x-cloak attribute on the warning callout to properly prevent flash of unstyled content before Alpine.js initializes. Alpine 3+ automatically handles x-cloak styling. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
b75c0fd8ae
commit
3b9eb42eaf
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@
|
|||
<x-forms.checkbox id="is_system_wide" label="System Wide"
|
||||
helper="If checked, this GitHub App will be available for everyone in this Coolify instance." />
|
||||
</div>
|
||||
<div x-show="showWarning" x-transition style="display: none;" class="w-full max-w-2xl mx-auto pt-2">
|
||||
<div x-show="showWarning" x-transition x-cloak class="w-full max-w-2xl mx-auto pt-2">
|
||||
<x-callout type="warning" title="Not Recommended">
|
||||
<div class="whitespace-normal break-words">
|
||||
System-wide GitHub Apps are shared across all teams on this Coolify instance. This means any team
|
||||
|
|
|
|||
Loading…
Reference in a new issue