From 6c68f3744fd4fc43ad91ce8df80ec02f384ade58 Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Mon, 2 Sep 2024 12:36:37 +0900 Subject: [PATCH] [bugfix] Config Page: Fix get software version function that wasn't working because of typo. --- src-ui/app/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/app/App.jsx b/src-ui/app/App.jsx index 92e22258..98b35cb1 100644 --- a/src-ui/app/App.jsx +++ b/src-ui/app/App.jsx @@ -14,13 +14,13 @@ export const App = () => { const main_page = getCurrent(); const { currentIsOpenedConfigPage } = useIsOpenedConfigPage(); - const { get_software_version } = useConfig(); + const { getSoftwareVersion } = useConfig(); useEffect(() => { main_page.setDecorations(true); if (!hasRunRef.current) { asyncStartPython().then((result) => { - get_software_version(); + getSoftwareVersion(); }).catch((err) => { });