switch to plebdevs.com domain, fix import bug

This commit is contained in:
austinkelsay 2024-11-15 11:08:56 -06:00
parent 74492eee12
commit 737c17b284
No known key found for this signature in database
GPG Key ID: 44CB4EC6D9F2FA02
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,8 @@ import { updateUser, getUserByPubkey, createUser, getUserByEmail } from "@/db/mo
import { createRole } from "@/db/models/roleModels";
import appConfig from "@/config/appConfig";
// todo: currently email accounts ephemeral privkey gets saved to db but not anon user, is this required at all given the newer auth setup?
const ndk = new NDK({
explicitRelayUrls: [...appConfig.defaultRelayUrls]
});

View File

@ -11,7 +11,7 @@ import { useRouter } from "next/router";
import { ProgressSpinner } from 'primereact/progressspinner';
import axios from 'axios';
import ZapThreadsWrapper from '@/components/ZapThreadsWrapper';
import { appConfig } from "@/config/appConfig";
import appConfig from "@/config/appConfig";
const Details = () => {
const [event, setEvent] = useState(null);