diff --git a/src/views/tenant/backup/RestoreBackup.jsx b/src/views/tenant/backup/RestoreBackup.jsx index be1da6530dab..d106469d8949 100644 --- a/src/views/tenant/backup/RestoreBackup.jsx +++ b/src/views/tenant/backup/RestoreBackup.jsx @@ -37,7 +37,7 @@ const OffboardingWizard = () => { isFetching: currentBackupsIsFetching, error: currentBackupsError, } = useGenericGetRequestQuery({ - path: `/api/ExecListBackup?TenantFilter=${tenantDomain}`, + path: `/api/ExecListBackup?TenantFilter=${tenantDomain}&Type=Scheduled`, }) const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() @@ -98,7 +98,7 @@ const OffboardingWizard = () => { label={'Backups for ' + tenantDomain} values={currentBackups?.map((backup) => ({ value: backup.RowKey, - name: `${backup.BackupDate}`, + name: `${backup.RowKey}`, }))} placeholder={!currentBackupsIsFetching ? 'Select a backup' : 'Loading...'} name="User"