Files
supabase/apps/studio/components/interfaces/Database/Backups/BackupsStorageAlert.tsx
Danny White a6c9b6b99b chore(studio): improve backup text (#42058)
* 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>
2026-01-26 11:58:53 +08:00

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."
/>
)
}