Skip to content

Commit

Permalink
Do not use node:crypto in playground app
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandrHoroshih committed Mar 19, 2024
1 parent d97783c commit b069bbf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use server";
import { createHash } from "node:crypto";
import { createHash } from "crypto";

export const hashValue = async (value: string) => {

Expand Down

0 comments on commit b069bbf

Please sign in to comment.