mirror of
https://github.com/supabase/supabase.git
synced 2026-09-06 18:11:51 +08:00
## Problem Our `<Button>` component breaks the default `button` contract by redefining the `type` prop to set its variant (`primary`, `default`, etc) instead of the button type (`submit`, `button`, etc). This is confusing and forces to write more code when using it with shadcn components that expect/inject the standard button props. ## Solution - rename the `type` prop to `variant` - rename the `htmlType` prop to `type` - propagate the changes where necessary - format code ## How to test As this is just prop renaming, if it builds it's ok --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
31 lines
900 B
TypeScript
31 lines
900 B
TypeScript
'use client'
|
|
|
|
import * as Sentry from '@sentry/nextjs'
|
|
import Link from 'next/link'
|
|
import { useEffect } from 'react'
|
|
import { Button } from 'ui'
|
|
|
|
const ErrorPage = ({ error }) => {
|
|
useEffect(() => {
|
|
Sentry.captureException(error)
|
|
}, [error])
|
|
|
|
return (
|
|
<div className="h-[calc(100vh-var(--header-height))] w-full flex flex-col gap-8 p-8 items-center justify-center">
|
|
<span className="text-center text-5xl text-foreground-lighter">
|
|
Sorry, something went wrong
|
|
</span>
|
|
<div className="flex flex-row items-center gap-4">
|
|
<Button asChild variant="secondary" className="w-fit p-4 text-lg">
|
|
<Link href="/">Return to homepage</Link>
|
|
</Button>
|
|
<Button variant="secondary" className="w-fit p-4 text-lg" onClick={() => location.reload()}>
|
|
Refresh page
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ErrorPage
|