Minor lint cleanup.

This commit is contained in:
Patrick Fic
2025-03-21 15:40:17 -07:00
parent 2fd226d43a
commit a814326aa3
5 changed files with 27 additions and 27 deletions

1
.eslintcache Normal file

File diff suppressed because one or more lines are too long

View File

@@ -119,7 +119,6 @@ function createWindow(): void {
{ {
label: "Learn More", label: "Learn More",
click: async (): Promise<void> => { click: async (): Promise<void> => {
const { shell } = require("electron");
await shell.openExternal("https://electronjs.org"); await shell.openExternal("https://electronjs.org");
}, },
}, },

View File

@@ -49,10 +49,10 @@ export const selectWatcherError = (state: RootState): string | null =>
//Async Functions - Thunks //Async Functions - Thunks
// Define a thunk that dispatches those action creators // Define a thunk that dispatches those action creators
const fetchUsers = () => async (dispatch) => { // const fetchUsers = () => async (dispatch) => {
//dispatch(watcherStarted()); // //dispatch(watcherStarted());
//Some sort of async action. // //Some sort of async action.
// dispatch(incrementByAmount(100)); // // dispatch(incrementByAmount(100));
}; // };
export default appSlice.reducer; export default appSlice.reducer;

View File

@@ -1,5 +1,5 @@
{ {
"toolbar": { "toolbar": {
"help": "Help" "help": "Help"
} }
} }

View File

@@ -1,20 +1,20 @@
{ {
"translation": { "translation": {
"navigation": { "navigation": {
"home": "Home", "home": "Home",
"settings": "Settings" "settings": "Settings"
}, },
"settings": { "settings": {
"actions": { "actions": {
"addpath": "Add path", "addpath": "Add path",
"startwatcher": "Start Watcher", "startwatcher": "Start Watcher",
"stopwatcher": "Stop Watcher\n" "stopwatcher": "Stop Watcher\n"
}, },
"labels": { "labels": {
"started": "Started", "started": "Started",
"stopped": "Stopped", "stopped": "Stopped",
"watcherstatus": "Watcher Status" "watcherstatus": "Watcher Status"
} }
} }
} }
} }