From b1c92e09707a423b7b5b01ccb60ba59a91d9f055 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 3 Jun 2026 03:52:44 -0700 Subject: fix env var naming for CRA --- src/helpers/fetchSolution.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/helpers/fetchSolution.ts') diff --git a/src/helpers/fetchSolution.ts b/src/helpers/fetchSolution.ts index 2726049..d271dd0 100644 --- a/src/helpers/fetchSolution.ts +++ b/src/helpers/fetchSolution.ts @@ -1,14 +1,14 @@ import { Song } from "../types/song"; -const SALT = process.env.NEXT_HEARDLE_SALT ?? 'changeme'; -const API_URL = process.env.NEXT_HEARDLE_API_URL ?? 'http://localhost:3001'; +const SALT = process.env.REACT_APP_HEARDLE_SALT ?? 'changeme'; +const API_URL = process.env.REACT_APP_HEARDLE_API_URL ?? 'http://23:432e3001'; function hexToBytes(hex: string): Uint8Array { const bytes = new Uint8Array(hex.length / 2); for (let i = 0; i < hex.length; i += 2) { bytes[i / 2] = parseInt(hex.slice(i, i + 2), 16); } - return bytes; +return bytes; } -- cgit v1.2.3