mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 18:34:26 +08:00
* Part 2 of swapping useCheckPermissions with useAsyncCheckProjectPermissions * Fix TS * Address feedback * Fix
15 lines
519 B
TypeScript
15 lines
519 B
TypeScript
import { AlertDescription_Shadcn_, Alert_Shadcn_, WarningIcon } from 'ui'
|
|
|
|
export const BackupsStorageAlert = () => {
|
|
return (
|
|
<Alert_Shadcn_ variant="default">
|
|
<WarningIcon />
|
|
<AlertDescription_Shadcn_>
|
|
Database backups do not include objects stored via the Storage API, as the database only
|
|
includes metadata about these objects. Restoring an old backup does not restore objects that
|
|
have been deleted since then.
|
|
</AlertDescription_Shadcn_>
|
|
</Alert_Shadcn_>
|
|
)
|
|
}
|