Merge branch 'dev'
This commit is contained in:
commit
36faaf0b97
2 changed files with 5 additions and 3 deletions
|
@ -436,6 +436,8 @@ const TaskInput = ({ autoFocus, onChoreUpdate }) => {
|
||||||
priority: priority || 0,
|
priority: priority || 0,
|
||||||
status: 0,
|
status: 0,
|
||||||
frequencyType: 'once',
|
frequencyType: 'once',
|
||||||
|
frequencyMetadata: {},
|
||||||
|
notificationMetadata: {},
|
||||||
}
|
}
|
||||||
|
|
||||||
if (frequency) {
|
if (frequency) {
|
||||||
|
|
|
@ -105,12 +105,12 @@ const NavBar = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<nav className='flex gap-2 p-2'>
|
<nav className='flex gap-2 p-3'>
|
||||||
<IconButton size='sm' variant='plain' onClick={() => setDrawerOpen(true)}>
|
<IconButton size='md' variant='plain' onClick={() => setDrawerOpen(true)}>
|
||||||
<MenuRounded />
|
<MenuRounded />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
<Box
|
<Box
|
||||||
className='flex items-center gap-1'
|
className='flex items-center gap-2'
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
navigate('/my/chores')
|
navigate('/my/chores')
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue