File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
apps/frontend/src/components Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ export const Filters = () => {
146146 ] ) ;
147147 return (
148148 < div className = "text-textColor flex gap-[8px] items-center select-none" >
149- < div onClick = { previous } >
149+ < div onClick = { previous } className = "cursor-pointer" >
150150 < svg
151151 xmlns = "http://www.w3.org/2000/svg"
152152 width = "20"
@@ -171,7 +171,7 @@ export const Filters = () => {
171171 ? `Week ${ week . currentWeek } `
172172 : `${ dayjs ( ) . month ( week . currentMonth ) . format ( 'MMMM' ) } ` }
173173 </ div >
174- < div onClick = { next } >
174+ < div onClick = { next } className = "cursor-pointer" >
175175 < svg
176176 xmlns = "http://www.w3.org/2000/svg"
177177 width = "20"
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ dayjs.extend(isBetween);
4444
4545export const LayoutSettings = ( { children } : { children : ReactNode } ) => {
4646 const fetch = useFetch ( ) ;
47- const { isGeneral} = useVariables ( ) ;
48- const { backendUrl, billingEnabled} = useVariables ( ) ;
47+ const { isGeneral } = useVariables ( ) ;
48+ const { backendUrl, billingEnabled } = useVariables ( ) ;
4949 const load = useCallback ( async ( path : string ) => {
5050 return await ( await fetch ( path ) ) . json ( ) ;
5151 } , [ ] ) ;
@@ -132,7 +132,7 @@ export const LayoutSettings = ({ children }: { children: ReactNode }) => {
132132 ) : (
133133 < div />
134134 ) }
135- < div className = "flex items-center gap-[8px] cursor-pointer " >
135+ < div className = "flex items-center gap-[8px]" >
136136 < ModeComponent />
137137 < SettingsComponent />
138138 < NotificationComponent />
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const ModeComponent = () => {
1515 } , [ mode ] ) ;
1616
1717 return (
18- < div onClick = { changeMode } className = "select-none" >
18+ < div onClick = { changeMode } className = "select-none cursor-pointer " >
1919 { mode === 'dark' ? (
2020 < svg
2121 xmlns = "http://www.w3.org/2000/svg"
You can’t perform that action at this time.
0 commit comments