We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9ed7e0 commit 6eed23eCopy full SHA for 6eed23e
1 file changed
apps/web/components/admin/settings/apikey/new.tsx
@@ -123,11 +123,13 @@ export default function NewApikey({
123
)}
124
{!apikey && (
125
<div className="flex gap-2">
126
- <Button disabled={!name || loading} sx={{ mr: 1 }}>
+ <Button disabled={!name || loading}>
127
{APIKEY_NEW_BTN_CAPTION}
128
</Button>
129
<Link href={`/dashboard/settings?tab=API%20Keys`}>
130
- <Button variant="soft">{BUTTON_CANCEL_TEXT}</Button>
+ <Button variant="secondary">
131
+ {BUTTON_CANCEL_TEXT}
132
+ </Button>
133
</Link>
134
</div>
135
0 commit comments