Fix NameEditor reservations handling of errors

This commit is contained in:
2025-04-16 17:59:02 -04:00
parent b927d3abc8
commit 1c56e07b4b

View File

@@ -49,7 +49,6 @@ const checkNameAvailability = async () => {
reservationState.value = "reserved";
} catch (error) {
reservationState.value = "unavailable"; // Handle API failure case
reservationId.value = undefined;
} finally {
emits('update:name', name.value);
emits('update:creatorNameReservationId', reservationId.value);