Skip to content

Commit

Permalink
Add Loader component to AppDataStorageModal
Browse files Browse the repository at this point in the history
  • Loading branch information
Cosmin-Parvulescu committed Feb 9, 2024
1 parent 9adf3b8 commit 63c67dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/console/app/routes/apps/$clientId/storage.ostrich.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import dangerVector from '~/images/danger.svg'
import { Input } from '@proofzero/design-system/src/atoms/form/Input'
import AppDataStorageModal from '~/components/AppDataStorageModal/AppDataStorageModal'
import { Menu, Transition } from '@headlessui/react'
import { Loader } from '@proofzero/design-system/src/molecules/loader/Loader'

export const action: ActionFunction = getRollupReqFunctionErrorWrapper(
async ({ request, context, params }) => {
Expand Down Expand Up @@ -181,6 +182,7 @@ export default () => {

return (
<>
{fetcher.state !== 'idle' && <Loader />}
{isCancelModalOpen && (
<ConfirmCancelModal
isOpen={isCancelModalOpen}
Expand Down

0 comments on commit 63c67dc

Please sign in to comment.