From 2d800d9e7b2980ea42c6dcfa86702faf497efa51 Mon Sep 17 00:00:00 2001 From: Arda TANRIKULU Date: Sun, 16 Jun 2024 15:05:24 +0300 Subject: [PATCH] Prettier --- .../pages/docs/integrations/integration-with-uwebsockets.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/docs/integrations/integration-with-uwebsockets.mdx b/website/src/pages/docs/integrations/integration-with-uwebsockets.mdx index 5850a06029..af94ed716d 100644 --- a/website/src/pages/docs/integrations/integration-with-uwebsockets.mdx +++ b/website/src/pages/docs/integrations/integration-with-uwebsockets.mdx @@ -47,7 +47,7 @@ const yoga = createYoga({ App() .any('/*', yoga) - .listen("localhost", 4000, () => { + .listen('localhost', 4000, () => { console.log(`Server is running on http://localhost:4000`) }) ```