fix(next.config): correct comment formatting for BACKEND_API_BASE_URL warning

- Updated comment in next.config.mjs to improve clarity regarding the implications of setting BACKEND_API_BASE_URL in the environment file.
- Added "use client" directive in tableSortContext.ts to indicate client-side rendering for the context component.
This commit is contained in:
AmirReza Jamali
2026-06-01 13:14:25 +03:30
parent de0e31bac5
commit 9424758af5
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -1,3 +1,5 @@
"use client";
import { createContext } from "react"; import { createContext } from "react";
export type SortDirection = "asc" | "desc"; export type SortDirection = "asc" | "desc";