From 525e0800daa9b8ac8c29b393d5d862d05546262e Mon Sep 17 00:00:00 2001 From: Parkreiner Date: Wed, 24 Apr 2024 16:55:01 +0000 Subject: [PATCH] docs: update variable reference in contributing docs --- docs/contributing/frontend.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/frontend.md b/docs/contributing/frontend.md index e24fadf8f5..2644c22193 100644 --- a/docs/contributing/frontend.md +++ b/docs/contributing/frontend.md @@ -152,7 +152,7 @@ example below: export const getAgentListeningPorts = async ( agentID: string, ): Promise => { - const response = await axios.get( + const response = await axiosInstance.get( `/api/v2/workspaceagents/${agentID}/listening-ports`, ); return response.data;