Files
Danny White 476d4a5851 refactor(ui): drop redundant Button variant="default" props (#50161)
## What kind of change does this PR introduce?

Mechanical cleanup on top of the Button default-variant change (#50160).

## What is the current behavior?

Many callsites still pass `variant="default"` even though that is now
the component default.

## What is the new behavior?

Removes redundant static `variant="default"` from legacy `Button` and
`ButtonTooltip` callsites. Keeps explicit defaults where they document
the API:

- `button-default.tsx` and `button-sizes.tsx` demos
- `DocsButton`, which pins neutral styling at the wrapper boundary

## To test

Studio:

- [Auth → Rate
Limits](https://studio-staging-2s957kwc4-supabase.vercel.app/dashboard/project/_/auth/rate-limits):
dirty the form so Cancel appears; Cancel stays neutral, Save stays green
- [Project Settings → API
Keys](https://studio-staging-2s957kwc4-supabase.vercel.app/dashboard/project/_/settings/api-keys):
`DocsButton` in the header actions stays neutral

Design system:

- [Design system →
Button](https://design-system-git-dnywh-dc924ac1-supabase.vercel.app/design-system/docs/components/button):
`button-default` / `button-sizes` still show explicit default styling;
Primary (green) is restricted to the Primary section (and `asChild`)

WWW:

- [www → Brand
assets](https://zone-www-dot-com-git-dnywh-dc924ac1-supabase.vercel.app/brand-assets):
Download logo kit / Download button kit stay neutral
2026-09-11 17:05:26 +10:00

90 lines
2.2 KiB
TypeScript

import { useRouter } from 'next/router'
import { Button } from 'ui'
import { Admonition } from 'ui-patterns/Admonition'
import { OrganizationInviteByToken } from '@/data/organization-members/organization-invitation-token-query'
import { useSignOut } from '@/lib/auth'
import { useProfile } from '@/lib/profile'
import type { ResponseError } from '@/types'
interface OrganizationInviteError {
data?: OrganizationInviteByToken
error?: ResponseError | null
isError: boolean
isInvalidInvite?: boolean
}
export const OrganizationInviteError = ({
data,
error,
isError,
isInvalidInvite,
}: OrganizationInviteError) => {
const router = useRouter()
const signOut = useSignOut()
const { profile } = useProfile()
const handleSignOut = async () => {
await signOut()
router.reload()
}
if (isInvalidInvite) {
return (
<Admonition
type="warning"
description="Open the full invite link again, or ask the organization owner for a new invite."
/>
)
}
if (isError) {
return (
<Admonition
type="danger"
description={error?.message ?? 'Open the full invite link again, or ask for a new invite.'}
/>
)
}
if (!data?.email_match) {
return (
<div className="flex flex-col gap-3">
<Admonition
type="warning"
description={
profile?.primary_email ? (
<>
You are signed in as{' '}
<span className="font-medium text-foreground">{profile.primary_email}</span>. Sign
in with the email address that received this invite.
</>
) : (
'Sign in with the email address that received this invite.'
)
}
/>
<Button block onClick={handleSignOut}>
Sign out
</Button>
</div>
)
}
if (data.expired_token) {
return (
<Admonition
type="warning"
description="Ask the organization owner to send you a new invite."
/>
)
}
return (
<Admonition
type="warning"
description="Open the full invite link again, or ask the organization owner for a new invite."
/>
)
}