Skip to content

Commit d865f6c

Browse files
authored
feat: companion add missing advanced event type (calcom#26594)
* feat: companion add missing advanced event type * feat: companion add missing advanced event type * remove metadata code and remove non implemented Auto translate title and description toggle from companion * Save Button Dirty State * address cubic feedback - default value for sendTranscriptionEmails * address cubic comments - fix new event type blocked issue * ios language dropdown
1 parent 51639e3 commit d865f6c

10 files changed

Lines changed: 619 additions & 249 deletions

File tree

companion/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ yarn-error.*
3232
# macOS
3333
.DS_Store
3434
*.pem
35+
safari-extension/
3536

3637
# local env files
3738
.env*.local

companion/app/(tabs)/(availability)/_layout.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Stack } from "expo-router";
2-
import { Platform } from "react-native";
32

43
export default function AvailabilityLayout() {
54
return (

companion/app/(tabs)/(availability)/availability-detail.ios.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,7 @@ export default function AvailabilityDetailIOS() {
107107
</Stack.Header.Right>
108108
</Stack.Header>
109109

110-
<AvailabilityDetailScreen
111-
ref={screenRef}
112-
id={id}
113-
// @ts-expect-error - onActionsReady is only available in AvailabilityDetailScreen.ios.tsx
114-
onActionsReady={handleActionsReady}
115-
/>
110+
<AvailabilityDetailScreen ref={screenRef} id={id} onActionsReady={handleActionsReady} />
116111
</>
117112
);
118113
}

0 commit comments

Comments
 (0)