]> Untitled Git - lemmy-ui.git/commitdiff
Remove console log
authorabias <abias1122@gmail.com>
Sun, 21 May 2023 19:11:20 +0000 (15:11 -0400)
committerabias <abias1122@gmail.com>
Sun, 21 May 2023 19:11:20 +0000 (15:11 -0400)
src/shared/components/common/tabs.tsx

index 61ed396e1c170e060db2aa464b8c6ec5b42e1eb5..17980a476ce2b6f448a9c56039da29b7cd6b0dcc 100644 (file)
@@ -15,7 +15,6 @@ interface TabsState {
 }
 
 function handleSwitchTab({ ctx, tab }: { ctx: Tabs; tab: string }) {
-  console.log(tab);
   ctx.setState({ currentTab: tab });
 }