From 9c21b246ef8018bbaec6d91af4df4e0b7ef5b97f Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Mon, 9 Jan 2023 21:04:05 -0700 Subject: [PATCH] Typo --- web/src/routes/System.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/routes/System.jsx b/web/src/routes/System.jsx index aacc35ff1..4f3d45366 100644 --- a/web/src/routes/System.jsx +++ b/web/src/routes/System.jsx @@ -74,7 +74,7 @@ export default function System() { }; const onCopyVainfo = async () => { - copy(JSON.stringify(state.vaifp, null, 2)); + copy(JSON.stringify(state.vainfo, null, 2)); setState({ ...state, vainfo: '', showVainfo: false }); };