mirror of
https://github.com/supabase/supabase.git
synced 2026-06-10 04:26:19 +08:00
* date fix * better tooltip * better dialog * fix * better dialog * all variations of admonition for posterity * cleanup * inline admonition * fix * additional blog post fixes * Update backups learn more cta URL * Revert * Update tooltip content --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
15 lines
478 B
TypeScript
15 lines
478 B
TypeScript
import { Admonition } from 'ui-patterns/admonition'
|
|
|
|
export const BackupsStorageAlert = () => {
|
|
return (
|
|
<Admonition
|
|
type="default"
|
|
layout="horizontal"
|
|
title="Storage objects are not included"
|
|
description="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."
|
|
/>
|
|
)
|
|
}
|