BackupsStorageAlert.tsx14 lines · main
1import { Admonition } from 'ui-patterns/admonition'
2
3export const BackupsStorageAlert = () => {
4 return (
5 <Admonition
6 type="default"
7 layout="horizontal"
8 title="Storage objects are not included"
9 description="Database backups do not include objects stored via the Storage API, as the database only
10 includes metadata about these objects. Restoring an old backup does not restore objects that
11 have been deleted since then."
12 />
13 )
14}