fix: prevent cookie manager from racing env init

this fixes a bug where using LOAD_ENV_FILE did not work with COOKIE_SECRET
This commit is contained in:
Aarnav Tale 2025-01-06 08:11:45 +05:30
parent a4bb3cce5f
commit 7217659720
No known key found for this signature in database
15 changed files with 97 additions and 46 deletions

View file

@ -1,11 +1,11 @@
import type { ActionFunctionArgs } from 'react-router';
import { json, useLoaderData } from 'react-router';
import { data, useLoaderData } from 'react-router';
import Code from '~/components/Code';
import Notice from '~/components/Notice';
import { loadContext } from '~/utils/config/headplane';
import { loadConfig, patchConfig } from '~/utils/config/headscale';
import { getSession } from '~/utils/sessions';
import { getSession } from '~/utils/sessions.server';
import { useLiveData } from '~/utils/useLiveData';
import DNS from './components/dns';