Skip to content

Commit

Permalink
fixes build
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik1999 committed Jul 18, 2023
1 parent c54c800 commit d9c50bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy Miden Assembly Playground
on:
push:
branches:
- main
- dominik_fix_build_again

jobs:
build:
Expand Down
12 changes: 6 additions & 6 deletions playground/src/pages/TxProof.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import useState from "react";
import React, { useState } from "react";
import ActionButton from "../components/ActionButton";
import toast, { Toaster } from "react-hot-toast";
import init, {
Expand All @@ -9,11 +9,11 @@ import init, {


export default function TxProofPage(): JSX.Element {
const [isProcessing, setIsProcessing] = useState(false);
const [showPrepVideo, setShowPrepVideo] = useState(false);
const [showProveVideo, setShowProveVideo] = useState(false);
const [prepared, setPrepared] = useState(false);
const [proven, setProven] = useState(false);
const [isProcessing, setIsProcessing] = React.useState(false);
const [showPrepVideo, setShowPrepVideo] = React.useState(false);
const [showProveVideo, setShowProveVideo] = React.useState(false);
const [prepared, setPrepared] = React.useState(false);
const [proven, setProven] = React.useState(false);

/**
* This prepares the transaction.
Expand Down

0 comments on commit d9c50bd

Please sign in to comment.