docs: update variable reference in contributing docs

This commit is contained in:
Parkreiner 2024-04-24 16:55:01 +00:00
parent 27d63c36ff
commit 525e0800da
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ example below:
export const getAgentListeningPorts = async (
agentID: string,
): Promise<TypesGen.ListeningPortsResponse> => {
const response = await axios.get(
const response = await axiosInstance.get(
`/api/v2/workspaceagents/${agentID}/listening-ports`,
);
return response.data;