From bdc229b627ace45ef37da18f14fdbc3ba9dd1301 Mon Sep 17 00:00:00 2001 From: pbohlman Date: Fri, 14 Jun 2024 19:08:34 -0400 Subject: [PATCH] docs: tweak worker client docs --- packages/docs/src/pages/client/web-worker-client.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/pages/client/web-worker-client.mdx b/packages/docs/src/pages/client/web-worker-client.mdx index a56d6c8e..f9199c20 100644 --- a/packages/docs/src/pages/client/web-worker-client.mdx +++ b/packages/docs/src/pages/client/web-worker-client.mdx @@ -36,4 +36,4 @@ const client = new WorkerClient({ ## Debugging a `WorkerClient` -Because the `WorkerClient` runs in a Shared Worker, you can't directly access the client in the browser's console. Instead, navigate to `chrome://inspect/#workers` to view the logs for the Shared Worker. +Because the `WorkerClient` runs in a Shared Worker you can't immediately view the Triplit-specific logs it produces. Instead, navigate to `chrome://inspect/#workers` to view the logs for the Shared Worker. We plan to add better debugging support for the `WorkerClient` in the future.