diff options
Diffstat (limited to 'src/components/ReportDialog/SubmitView.tsx')
-rw-r--r-- | src/components/ReportDialog/SubmitView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/ReportDialog/SubmitView.tsx b/src/components/ReportDialog/SubmitView.tsx index ef4a9b7fb..36bd1d466 100644 --- a/src/components/ReportDialog/SubmitView.tsx +++ b/src/components/ReportDialog/SubmitView.tsx @@ -16,6 +16,7 @@ import * as Dialog from '#/components/Dialog' import * as Toggle from '#/components/forms/Toggle' import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' import {ChevronLeft_Stroke2_Corner0_Rounded as ChevronLeft} from '#/components/icons/Chevron' +import {PaperPlane_Stroke2_Corner0_Rounded as SendIcon} from '#/components/icons/PaperPlane' import {Loader} from '#/components/Loader' import {Text} from '#/components/Typography' import {ReportDialogProps} from './types' @@ -223,7 +224,7 @@ export function SubmitView({ <ButtonText> <Trans>Send report</Trans> </ButtonText> - {submitting && <ButtonIcon icon={Loader} />} + <ButtonIcon icon={submitting ? Loader : SendIcon} /> </Button> </View> {/* Maybe fix this later -h */} |