completionId: cgen-d7707b0afb9d450997e3d23c4d483e60
cgen-d7707b0afb9d450997e3d23c4d483e60
This commit is contained in:
parent
8210cb3137
commit
203ec27724
1 changed files with 8 additions and 1 deletions
|
|
@ -190,7 +190,14 @@ export function AdminDiscordManagement() {
|
|||
disabled={isRegisteringCommands}
|
||||
className="w-full bg-blue-600 hover:bg-blue-700 disabled:opacity-50"
|
||||
>
|
||||
{isRegisteringCommands ? "Registering..." : "Register Commands"}
|
||||
{isRegisteringCommands ? (
|
||||
<>
|
||||
<Loader2 className="h-4 w-4 mr-2 animate-spin" />
|
||||
Registering...
|
||||
</>
|
||||
) : (
|
||||
"Register Commands"
|
||||
)}
|
||||
</Button>
|
||||
<p className="text-xs text-gray-500">
|
||||
You'll be prompted to enter your admin registration token. This is a
|
||||
|
|
|
|||
Loading…
Reference in a new issue