mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-18 06:17:21 +00:00
Fix Vercel deployment errors: add .js extension to storage import in websocket.ts and fix missing ternary closing paren in passport.tsx
This commit is contained in:
parent
bd1525b8e7
commit
e3e894ca61
2 changed files with 4 additions and 4 deletions
|
|
@ -162,7 +162,7 @@ export default function Passport() {
|
|||
<Fingerprint className="w-8 h-8 text-primary/50" />
|
||||
<div className="text-[10px] text-muted-foreground font-tech">
|
||||
<div className="uppercase">Immutable Ledger Hash</div>
|
||||
<div className="truncate w-32">0x7f23b9c02a9</div>
|
||||
<div className="truncate w-32">{'0x7f23b9c02a9'}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-2 text-[10px] italic text-muted-foreground/60 text-right">
|
||||
|
|
@ -170,17 +170,17 @@ export default function Passport() {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{/* Footer Bar */}
|
||||
<div className="bg-primary/5 p-2 text-center border-t border-primary/20">
|
||||
<div className="text-[10px] text-primary/60 tracking-[0.3em] uppercase">
|
||||
Official Certification Document // Do Not Copy
|
||||
Official Certification Document - Do Not Copy
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</motion.div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import { Server } from "http";
|
||||
import { Server as SocketIOServer, Socket } from "socket.io";
|
||||
import { storage } from "./storage";
|
||||
import { storage } from "./storage.js";
|
||||
|
||||
interface SocketData {
|
||||
userId?: string;
|
||||
|
|
|
|||
Loading…
Reference in a new issue