From be63574d3131c48bcec1ade6afdc37d805b1f8c1 Mon Sep 17 00:00:00 2001 From: wangjingcun Date: Fri, 8 Nov 2024 10:18:28 +0800 Subject: [PATCH] chore(libs): fix some typos in comment Signed-off-by: wangjingcun --- libs/remix-ui/run-tab/src/lib/actions/events.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-ui/run-tab/src/lib/actions/events.ts b/libs/remix-ui/run-tab/src/lib/actions/events.ts index ccbd7ae7d8..111c598a70 100644 --- a/libs/remix-ui/run-tab/src/lib/actions/events.ts +++ b/libs/remix-ui/run-tab/src/lib/actions/events.ts @@ -46,7 +46,7 @@ export const setupEvents = (plugin: RunTab) => { setFinalContext(plugin, dispatch) fillAccountsList(plugin, dispatch) // 'contextChanged' & 'networkStatus' both are triggered on workspace & network change - // There is chance that pinned contracts state is overrided by othe event + // There is chance that pinned contracts state is overridden by other event // We load pinned contracts for VM environment in this event // and for other environments in 'networkStatus' event if (context.startsWith('vm')) await loadPinnedContracts(plugin, dispatch, context)