We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a915560 commit 295a7c8Copy full SHA for 295a7c8
src/app/page.tsx
@@ -84,10 +84,10 @@ export default function Home() {
84
useEffect(() => {
85
(async () => {
86
const tab = searchParams.get('tab');
87
- if (tab === 'strategies') {
88
- setTabIndex(0);
89
- } else {
+ if (tab === 'pools') {
90
setTabIndex(1);
+ } else {
+ setTabIndex(0);
91
}
92
})();
93
}, [searchParams]);
@@ -126,7 +126,7 @@ export default function Home() {
126
onChange={handleTabsChange}
127
marginTop={'10px'}
128
>
129
- <TabList>
+ <TabList paddingLeft={'16px'}>
130
<Tab
131
color={'silver_gray'}
132
_selected={{ color: 'light_green', fontWeight: 'bold' }}
0 commit comments