Skip to content

Commit

Permalink
deno fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marsian83 committed Jan 8, 2025
1 parent bde2656 commit 7567026
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/client/src/pages/token/Trader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function Trader() {
const [loading, setLoading] = useState(false);
const [tradeState, setTradeState] = useState<"BUY" | "SELL">("BUY");
const [amount, setAmount] = useState({ buy: 0, sell: 0 });
const [slippage, setSlippage] = useState(1);
const slippage = 1;

const tradingPair = [
{
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/environment/environment.tmp.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"currentNetwork": "hardhat"
}
}
1 change: 0 additions & 1 deletion packages/contracts/environment/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
} from "../definitions.gen.ts";
import { expect } from "@std/expect";
import environmentState_ from "./environment.tmp.json" with { type: "json" };
import { consoleFmt } from "../utils.ts";

// deno-lint-ignore no-explicit-any
const environmentState = environmentState_ as any;
Expand Down

0 comments on commit 7567026

Please sign in to comment.