Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
maltheism committed Jun 11, 2022
1 parent 6c9c926 commit f9e4900
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ViewManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const ViewManager = (props) => {
};
ViewManager.views = () => {
return {
app: <App />,
settings: <Settings />,
app: <App/>,
settings: <Settings/>,
};
};
ViewManager.View = (props) => {
Expand Down
2 changes: 1 addition & 1 deletion src/jsx/Configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ const Configuration = (props) => {
setModalVisible(!hidden);
};

const validateJSON = async (jsons) => {
const validateJSON = (jsons) => {
const promisesArray = [];
for (let i = 0; i < jsons?.length; i++) {
const json = jsons[i];
Expand Down

0 comments on commit f9e4900

Please sign in to comment.