Skip to content

Commit

Permalink
chore: fix format:cspell
Browse files Browse the repository at this point in the history
  • Loading branch information
hhio618 committed Oct 15, 2024
1 parent 2db0505 commit ff0d9d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/handlers/generate-erc20-permit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Context, Logger } from "../types/context";
import { PermitReward, TokenType } from "../types";
import { decrypt, parseDecryptedPrivateKey } from "../utils";
import { getFastestProvider } from "../utils/get-fastest-provider";
import { v4 as uuidv4 } from "uuid";
import { v4 as uuid } from "uuid";

export interface Payload {
evmNetworkId: number;
Expand Down Expand Up @@ -56,7 +56,7 @@ export async function generateErc20PermitSignature(
} else if ("pull_request" in contextOrPayload.payload) {
issueNodeId = contextOrPayload.payload.pull_request.node_id;
} else if (contextOrPayload.config.runId) {
issueNodeId = uuidv4();
issueNodeId = uuid();
} else {
throw new Error("Issue Id is missing");
}
Expand Down

0 comments on commit ff0d9d9

Please sign in to comment.