Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
beebls committed Sep 19, 2023
1 parent 204e4f9 commit 54599b3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export function ThemeSettingsModalButtons({
starred: boolean;
};
if (data) {
console.log("DATA", data);
setStarFetchLoaded(true);
setStarred(data.starred);
}
Expand Down
2 changes: 0 additions & 2 deletions src/components/TitleView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ export function TitleView({ onDocsClick }: { onDocsClick?: () => {} }) {
Navigation.Navigate("/cssloader/theme-manager");
};

console.log("HEELO WUMPUS", onDocsClick);

return (
<Focusable
style={{
Expand Down
3 changes: 0 additions & 3 deletions src/pages/settings/PluginSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,8 @@ export function PluginSettings() {
}, []);

async function setWatch(enabled: boolean) {
console.log("VALUE", enabled);
await toggleWatchState(enabled, false);
console.log("TOGGLED");
const res = await getWatchState();
console.log("RES FETCHED", res);
if (res.success && res.result) setWatchOn(res.result);
}

Expand Down

0 comments on commit 54599b3

Please sign in to comment.