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 26, 2023
1 parent c02c149 commit e9a87dc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/web/components/eventtype/EventSetupTab.tsx
Expand Up @@ -139,7 +139,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 e9a87dc

Please sign in to comment.