Skip to content

Commit

Permalink
chore(examples): remove goofy spread
Browse files Browse the repository at this point in the history
  • Loading branch information
Vexcited committed Nov 7, 2024
1 parent eddb1fe commit 49ba225
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/contact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { read } from "./_persisted-session";

void async function main () {
const identification = await read();
const contact = await izly.contact({ ...identification });
const contact = await izly.contact(identification);

console.log(contact);
console.dir(contact, { depth: Infinity });
}();

0 comments on commit 49ba225

Please sign in to comment.