mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-27 01:37: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" />
|
<Fingerprint className="w-8 h-8 text-primary/50" />
|
||||||
<div className="text-[10px] text-muted-foreground font-tech">
|
<div className="text-[10px] text-muted-foreground font-tech">
|
||||||
<div className="uppercase">Immutable Ledger Hash</div>
|
<div className="uppercase">Immutable Ledger Hash</div>
|
||||||
<div className="truncate w-32">0x7f23b9c02a9</div>
|
<div className="truncate w-32">{'0x7f23b9c02a9'}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-2 text-[10px] italic text-muted-foreground/60 text-right">
|
<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>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Footer Bar */}
|
{/* Footer Bar */}
|
||||||
<div className="bg-primary/5 p-2 text-center border-t border-primary/20">
|
<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">
|
<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>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</motion.div>
|
</motion.div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import { Server } from "http";
|
import { Server } from "http";
|
||||||
import { Server as SocketIOServer, Socket } from "socket.io";
|
import { Server as SocketIOServer, Socket } from "socket.io";
|
||||||
import { storage } from "./storage";
|
import { storage } from "./storage.js";
|
||||||
|
|
||||||
interface SocketData {
|
interface SocketData {
|
||||||
userId?: string;
|
userId?: string;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue