Same situation happening for me, and it's not just the sign in checkbox, I've also had issues clicking radio groups and checkboxes inside both blade and livewire components. What's even weirder is that it SOMETIMES works in chromium based browsers (~10% chance in brave), and it's even worked once in a firefox based browser (zen)
<flux:checkbox wire:model="remember" :label="__('Remember me')" />
<flux:radio.group name="weight_change_goal" class="mb-6">
<flux:radio
label="Losing weight"
description="Sets your calorie goal as the maximum allowed daily calories."
value="cutting"
name="weight_change_goal"
checked
/>
<flux:radio
label="Gaining weight"
description="Sets your calorie goal as the daily minimum to reach."
value="bulking"
name="weight_change_goal"
/>
<flux:radio
label="Maintaining weight"
description="Checks if your daily calories are within 10% of your daily goal."
value="maintaining"
name="weight_change_goal"
/>
Here are some snippets i had issues with. This is what the devtools show on the login screen:
Uncaught DOMException: Operation is not supported
Uncaught DOMException: CustomElementRegistry.define: 'ui-disclosure' has already been defined as a custom element
_ http://localhost:8000/flux/flux.js?id=fbde5aaf:125
<anonymous> http://localhost:8000/flux/flux.js?id=fbde5aaf:125
<anonymous> http://localhost:8000/flux/flux.js?id=fbde5aaf:128
Here are my package versions:
Package.json
"dependencies": {
"@tailwindcss/vite": "^4.0.7",
"autoprefixer": "^10.4.20",
"axios": "^1.7.4",
"concurrently": "^9.0.1",
"laravel-vite-plugin": "^1.0",
"tailwindcss": "^4.0.7",
"vite": "^6.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5",
"@tailwindcss/oxide-linux-x64-gnu": "^4.0.1",
"lightningcss-linux-x64-gnu": "^1.29.1"
}
composer.json
"require": {
"php": "^8.2",
"laravel/framework": "^12.0",
"laravel/tinker": "^2.10.1",
"livewire/flux": "^2.0",
"livewire/livewire": "^3.6",
"livewire/volt": "^1.6.7",
"openai-php/laravel": "^0.11.0",
"spatie/image": "^3.8",
"spatie/image-optimizer": "^1.8"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.15",
"barryvdh/laravel-ide-helper": "^3.5",
"fakerphp/faker": "^1.23",
"laravel/pail": "^1.2.2",
"laravel/pint": "^1.18",
"laravel/sail": "^1.41",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
"pestphp/pest": "^3.7",
"pestphp/pest-plugin-laravel": "^3.1"
},
If anyone has any solutions for me, I've tried everything mentioned in this thread, but nothing worked. Thank you in advance!
Edit: might be worth noting that I'm using Fedora 41 with an intel iGPU running under wayland