From be6bbc3b5d6457b5b43c1e719fb3945ad6a43b4d Mon Sep 17 00:00:00 2001 From: Patrick Lee Scott Date: Fri, 4 Feb 2022 15:55:43 -0600 Subject: [PATCH] fix: unauthed-client name --- src/routes/todos/index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/todos/index.svelte b/src/routes/todos/index.svelte index 3b75fcc..52db157 100644 --- a/src/routes/todos/index.svelte +++ b/src/routes/todos/index.svelte @@ -133,7 +133,7 @@ }; graphqlClientInstance = await graphQLClient({ - id: `${userAddress}`, + id: `${userAddress || "anonymous"}-todos`, session, graphql: config.graphql, fetch,