This commit is contained in:
Regalijan 2024-03-02 04:05:05 -05:00
parent 88b256ca03
commit 7839444671
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -127,7 +127,7 @@ export default function () {
newEventData[eventIdx].approved = approved;
newEventData[eventIdx].pending = false;
setEventData(newEventData);
setEventData([...newEventData]);
}
async function certify(eventId: string) {
@ -169,7 +169,7 @@ export default function () {
eventData.findIndex((e) => e.id === eventId)
].reached_minimum_player_count = true;
setEventData(newEventData);
setEventData([...newEventData]);
}
return (