This repository was archived by the owner on Jul 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,14 @@ import LoadingBar from './LoadingBar';
2323import UpdatePage from './Update' ;
2424import Notifications from './Notifications' ;
2525
26- const useStyles = makeStyles ( {
26+ const useTabStyles = makeStyles ( {
2727 root : {
2828 minHeight : 0 ,
2929 } ,
3030 wrapper : {
3131 flexDirection : 'row' ,
3232 justifyContent : 'space-evenly' ,
33+ alignItems : 'flex-start' ,
3334 } ,
3435} ) ;
3536
@@ -66,7 +67,7 @@ const updateTab: Tab = {
6667} ;
6768
6869const MainView = ( ) => {
69- const styles = useStyles ( ) ;
70+ const tabStyles = useTabStyles ( ) ;
7071 const [ selectedTab , setSelectedTab ] = useState ( 0 ) ;
7172 const { appRelease } = useAppState ( ) ;
7273
@@ -83,7 +84,7 @@ const MainView = () => {
8384 key = { tab . name }
8485 label = { tab . name }
8586 value = { index }
86- classes = { styles }
87+ classes = { tabStyles }
8788 icon = { < tab . icon color = { tab . color } /> }
8889 onClick = { ( ) => setSelectedTab ( index ) }
8990 />
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const ResetSettings = () => {
2626 onClick = { handleResetClick }
2727 startIcon = { < RestoreIcon /> }
2828 >
29- Reset all to settings to default
29+ Reset all settings to default
3030 </ Button >
3131 </ ListItem >
3232 ) ;
You can’t perform that action at this time.
0 commit comments