Skip to content

Commit

Permalink
fix: lite retry dialog (#2570)
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteZhang1024 authored Feb 15, 2023
1 parent 9f821ad commit 32c7a1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ const ErrorDialog: FC<ErrorDialogViewProps> = ({
},
onPrimaryActionPress: ({ onClose }: OnCloseCallback) => {
onClose?.();
onRetry?.();
setTimeout(() => onRetry?.(), 500);
},
onSecondaryActionPress: () => onExit?.(),
}}
Expand Down

0 comments on commit 32c7a1c

Please sign in to comment.