Skip to content

Commit

Permalink
Set vainfo output in error correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Nov 13, 2022
1 parent acd690a commit 4974340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/routes/Debug.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default function Debug() {
if (response.status === 200) {
setState({ ...state, showVainfo: true, vainfo: JSON.stringify(resonse.data, null, 2)})
} else {
setState({ ...state, showVainfo: true, 'There was an error getting the vainfo output.'})
setState({ ...state, showVainfo: true, vainfo: 'There was an error getting the vainfo output.'})
}
};

Expand Down

0 comments on commit 4974340

Please sign in to comment.