format fix

This commit is contained in:
Alex Tran
2023-11-22 10:34:17 -06:00
parent 4f5780db25
commit 1d8614bb73
2 changed files with 5 additions and 7 deletions
@@ -38,9 +38,7 @@
};
const filterTimezones = () => {
filteredTimezones = timezones.filter((timezone) =>
timezone.zone.toLowerCase().includes(searchQuery.toLowerCase())
);
filteredTimezones = timezones.filter((timezone) => timezone.zone.toLowerCase().includes(searchQuery.toLowerCase()));
};
const dispatch = createEventDispatcher<{
@@ -80,8 +78,8 @@
selectedTimezone = item.offset;
closeDropdown();
};
</script>
<div role="presentation" on:keydown={handleKeydown}>
<ConfirmDialogue
confirmColor="primary"