Skip to content

Commit

Permalink
fix: changed todo and fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipHarald committed Jul 6, 2023
1 parent 2a96a48 commit f00872f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/nextjs/components/noir/Circuit/CircuitUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ export const CircuitUI = ({ circuitName, className = "" }: CircuitUIProps) => {
</div>
</div>
<div className="p-5 divide-y divide-base-300">
<p>TODO...</p>
<p>Verification is currently only done on-chain.</p>
{/* TODO */}
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/pages/api/proofs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ export default function handler(req: NextApiRequest, res: NextApiResponse) {
isRunning = false;
console.error("❌ Error generating proof: ", err);
});
res.status(200).json("Proof generation started, reult will be logged to server console");
res.status(200).json("Proof generation started, result will be logged to server console");
}

0 comments on commit f00872f

Please sign in to comment.