add spacebar before try number

This commit is contained in:
Michael Peters 2023-01-25 21:11:30 -08:00
parent f8ee502fee
commit 01ab408d51

View File

@ -17,6 +17,7 @@ export interface RetryProps {
const Retry: FC<RetryProps> = (props: RetryProps) => { const Retry: FC<RetryProps> = (props: RetryProps) => {
const { error, text, retryFunc } = props; const { error, text, retryFunc } = props;
// relies on the element being replaced with null when not in use
const [attempts, setAttempts] = useState(0); const [attempts, setAttempts] = useState(0);
const [retryCallable, buttonText, buttonShaking] = useAsyncSubmitButton( const [retryCallable, buttonText, buttonShaking] = useAsyncSubmitButton(