blob: cb3a0197eaa02a05263a120323c7722da22cdb43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { getContext } from "waku/middleware/context";
// This file appears to be unused - all cookie functionality is now in cookiebridge.ts
// Left as a placeholder in case it's referenced elsewhere
const useCookies = () => {
const ctx = getContext();
console.log("WARNING: useCookie.ts is deprecated, use cookiebridge.ts instead");
return "DEPRECATED";
};
export { useCookies };
|