Skip to content

Commit

Permalink
fix: step incorrect on validator status
Browse files Browse the repository at this point in the history
  • Loading branch information
Wagalidoom committed May 20, 2024
1 parent ca32258 commit 45e4757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/validator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Validator() {
const { validateStatus, statuses } = useValidators();
const [errorMessage, setErrorMessage] = useState("");
const [loading, setLoading] = useState(false);
const [step, setStep] = useState("validated");
const [step, setStep] = useState("validation");

const onDrop = useCallback(
async (acceptedFiles: File[], rejectedFiles: FileRejection[]) => {
Expand Down

0 comments on commit 45e4757

Please sign in to comment.