Add databaseType prop to HandleBackup component in ShowBackups

- Enhanced the HandleBackup component by passing the databaseType prop, improving the context for backup handling.
- This update aims to streamline the backup process and provide better integration with the database type information.
This commit is contained in:
Mauricio Siu 2025-05-04 21:37:40 -06:00
parent 1ec0c8e8b3
commit 95d949f112

View File

@ -334,6 +334,7 @@ export const ShowBackups = ({
<HandleBackup <HandleBackup
backupType={backup.backupType} backupType={backup.backupType}
backupId={backup.backupId} backupId={backup.backupId}
databaseType={backup.databaseType}
refetch={refetch} refetch={refetch}
/> />
<DialogAction <DialogAction