From 805d614c0a695ddf170378b4a1a54ccf14944d82 Mon Sep 17 00:00:00 2001 From: ygd58 Date: Sat, 11 Jul 2026 00:59:26 +0200 Subject: [PATCH] fix: correct Windows netstat command and add browser label for cache clearing (#413) Two fixes in troubleshooting.mdx: 1. Windows port conflict command: 'find' -> 'findstr' The find command requires quoted strings on Windows. findstr is the correct tool for filtering netstat output by port number. 2. Cache clearing instructions: add '(Chrome/Chromium)' label and note for other browsers. The existing steps only work in Chrome/Chromium. Firefox, Brave and Safari users could not find the described UI options. Fixes #413 --- .../tools/genlayer-studio/troubleshooting.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/developers/intelligent-contracts/tools/genlayer-studio/troubleshooting.mdx b/pages/developers/intelligent-contracts/tools/genlayer-studio/troubleshooting.mdx index 6b3dbd59..4c7024e4 100644 --- a/pages/developers/intelligent-contracts/tools/genlayer-studio/troubleshooting.mdx +++ b/pages/developers/intelligent-contracts/tools/genlayer-studio/troubleshooting.mdx @@ -11,7 +11,7 @@ The frontend may not load correctly due to caching issues or an outdated version ### Solution - **Refresh Frontend:** Simply reload the page in your browser. -- **Clear Cache:** Clear your browser's cache by clicking on the left of your address bar -> Cookies and site data -> Manage on device site data -> Delete localhost. +- **Clear Cache (Chrome/Chromium):** Clear your browser's cache by clicking on the left of your address bar -> Cookies and site data -> Manage on device site data -> Delete localhost. For other browsers (Firefox, Brave, Safari), use the browser's built-in settings to clear site data for localhost. import Image from 'next/image' @@ -37,7 +37,7 @@ The Studio may fail to start if some ports required for its operation are alread ``` - **Windows:** ```cmd copy - netstat -aon | find + netstat -aon | findstr ``` 2. Use the following command to kill the process using the port. Replace `` with the Process ID obtained from the previous step. - **Linux / MacOS:**