diff --git a/src/routes/Auth.tsx b/src/routes/Auth.tsx
index 8c7a506..8a8a781 100644
--- a/src/routes/Auth.tsx
+++ b/src/routes/Auth.tsx
@@ -1,6 +1,6 @@
import React, { useEffect } from 'react';
import { useNavigate } from 'react-router-dom';
-import CryptoLogin from '../components/auth/CryptoLogin';
+import CryptID from '../components/auth/CryptID';
import { useAuth } from '../context/AuthContext';
export const Auth: React.FC = () => {
@@ -37,7 +37,7 @@ export const Auth: React.FC = () => {
return (
- navigate('/')} />
+ navigate('/')} />
);
};
\ No newline at end of file
diff --git a/src/ui/CustomToolbar.tsx b/src/ui/CustomToolbar.tsx
index bbf44cb..6331222 100644
--- a/src/ui/CustomToolbar.tsx
+++ b/src/ui/CustomToolbar.tsx
@@ -583,7 +583,7 @@ export function CustomToolbar() {
{hasApiKey ? "🔑" : "❌"}
-
{session.username}
+
CryptID: {session.username}
{showProfilePopup && (
@@ -602,7 +602,7 @@ export function CustomToolbar() {
}}
>
- Hello, {session.username}!
+ CryptID: {session.username}
{/* API Key Status */}
@@ -1044,6 +1044,14 @@ export function CustomToolbar() {
isSelected={tools["Holon"].id === editor.getCurrentToolId()}
/>
)}
+ {tools["ImageGen"] && (
+
+ )}
{/* Share Location tool removed for now */}
{/* Refresh All ObsNotes Button */}
{(() => {
diff --git a/vercel.json b/vercel.json
deleted file mode 100644
index 10fc862..0000000
--- a/vercel.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "buildCommand": "npm run build",
- "installCommand": "npm install",
- "framework": "vite",
- "outputDirectory": "dist",
- "rewrites": [
- {
- "source": "/board/(.*)",
- "destination": "/"
- },
- {
- "source": "/board",
- "destination": "/"
- },
- {
- "source": "/inbox",
- "destination": "/"
- },
- {
- "source": "/contact",
- "destination": "/"
- },
- {
- "source": "/presentations",
- "destination": "/"
- },
- {
- "source": "/presentations",
- "destination": "/resilience"
- },
- {
- "source": "/dashboard",
- "destination": "/"
- }
- ],
- "headers": [
- {
- "source": "/assets/(.*)",
- "headers": [
- {
- "key": "Cache-Control",
- "value": "public, max-age=31536000, immutable"
- }
- ]
- }
- ]
-}
\ No newline at end of file