mirror of
https://github.com/Xevion/dynamic-preauth.git
synced 2025-12-06 03:14:58 -06:00
fix process.env/import.meta.env usages, TODO linting, fix Emboldened hexadecimal null handling
This commit is contained in:
@@ -41,8 +41,8 @@ const Demo = ({ class: className }: DemoProps) => {
|
||||
session.
|
||||
<br />
|
||||
Your session is{" "}
|
||||
<Emboldened skeletonWidth="0x12345678" copyable={true}>
|
||||
{"0x" + id?.toString(16).toUpperCase()}
|
||||
<Emboldened skeletonWidth="0x1234567890ABCDEF" copyable={true}>
|
||||
{id != null ? "0x" + id?.toString(16).toUpperCase() : null}
|
||||
</Emboldened>
|
||||
. You have{" "}
|
||||
<Emboldened className="text-teal-400 font-inter">
|
||||
|
||||
Reference in New Issue
Block a user