Remove console log

This commit is contained in:
abias 2023-05-21 15:11:20 -04:00
parent cf58a0c451
commit 132f241e63
1 changed files with 0 additions and 1 deletions

View File

@ -15,7 +15,6 @@ interface TabsState {
}
function handleSwitchTab({ ctx, tab }: { ctx: Tabs; tab: string }) {
console.log(tab);
ctx.setState({ currentTab: tab });
}