venues and ui changes

This commit is contained in:
2025-07-24 09:42:57 -04:00
parent 049def6886
commit 27590f9509
24 changed files with 757 additions and 164 deletions

View File

@@ -13,7 +13,7 @@ interface Props {
export default function EventDashboard({ event }: Props) {
const [todos, setTodos] = useState(event.todos)
async function refreshTodos() {
async function refreshTodos() {
try {
const data = await fetchEventTodos(event.id)
setTodos(data)
@@ -22,8 +22,6 @@ export default function EventDashboard({ event }: Props) {
}
}
console.log(todos)
return (
<div className='grid grid-cols-1 lg:grid-cols-3 gap-6'>
<EventInfo event={event} />