fix(web): revert reward_amount back to number
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s

This commit is contained in:
OG T
2026-06-08 00:55:41 +08:00
parent a1d9de406b
commit b57c285ed6
2 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ async function main() {
claim_token: claimRes.claim_token,
title: "Write unit tests for the fibonacci function",
description: "Write comprehensive unit tests in Jest for fib(n).",
reward_amount: { amount: 1000, currency: "USD" }, // $10 out of the $500
reward_amount: 1000, // $10 out of the $500
acceptance_criteria: {
validation_mode: "AST_PARSING",
test_file_content: "import { test } from 'jest'; test('fake', () => { /* min 20 chars */ });"