frontend client for gemstone. decentralised workplace app
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: tid is in microseconds so times 1000

serenity 5459532c 0f91f36f

+1 -1
+1 -1
src/lib/utils/gmstn.ts
··· 116 116 agent: Agent; 117 117 }): Promise<Result<undefined, string>> => { 118 118 const now = new Date(); 119 - const rkey = TID.create(now.getTime(), Math.random()); 119 + const rkey = TID.create(now.getTime() * 1_000, Math.random()); 120 120 121 121 const record: Omit<SystemsGmstnDevelopmentChannelInvite, "$type"> = { 122 122 // @ts-expect-error we want to explicitly use the ISO string variant