Skip to content

Commit

Permalink
feat: make cal video default value
Browse files Browse the repository at this point in the history
  • Loading branch information
G3root committed Jan 27, 2023
1 parent 60f7528 commit fcefcf1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/web/components/eventtype/EventSetupTab.tsx
Expand Up @@ -138,7 +138,10 @@ export const EventSetupTab = (
return true;
});

const defaultValue = locationOptions.find((item) => item.label === "video")?.options;
const defaultValue = locationOptions
.find((item) => item.label === "video")
?.options.find((option) => option.value === "integrations:daily");

return (
<div className="w-full">
{validLocations.length === 0 && (
Expand Down

0 comments on commit fcefcf1

Please sign in to comment.