Tiny web app fixes

This commit is contained in:
binwiederhier 2023-05-15 13:37:30 -04:00
parent 04b7b4284a
commit ed0c1abd2f
3 changed files with 8 additions and 5 deletions

View file

@ -34,7 +34,7 @@ export const ReserveAddDialog = (props) => {
const handleSubmit = async () => {
try {
await accountApi.upsertReservation(topic, everyone);
console.debug(`[ReserveAddDialog] Added reservation for topic ${t}: ${everyone}`);
console.debug(`[ReserveAddDialog] Added reservation for topic ${topic}: ${everyone}`);
} catch (e) {
console.log(`[ReserveAddDialog] Error adding topic reservation.`, e);
if (e instanceof UnauthorizedError) {