Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions companion/app/(tabs)/(availability)/_layout.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Stack } from "expo-router";

export default function EventTypesLayout() {
export default function AvailabilityLayout() {
return (
<Stack>
<Stack.Screen name="index" options={{}} />
<Stack.Screen name="index" options={{ headerShown: false }} />
</Stack>
);
}
2 changes: 1 addition & 1 deletion companion/app/(tabs)/(availability)/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { isLiquidGlassAvailable } from "expo-glass-effect";
import { Image } from "expo-image";
import { Stack, useRouter } from "expo-router";
import { useState } from "react";
import { Alert, Platform, Pressable } from "react-native";
Expand All @@ -7,7 +8,6 @@ import { useCreateSchedule, useUserProfile } from "@/hooks";
import { CalComAPIService } from "@/services/calcom";
import { showErrorAlert } from "@/utils/alerts";
import { getAvatarUrl } from "@/utils/getAvatarUrl";
import { Image } from "expo-image";

export default function Availability() {
const router = useRouter();
Expand Down
2 changes: 1 addition & 1 deletion companion/app/(tabs)/(event-types)/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Stack } from "expo-router";
export default function EventTypesLayout() {
return (
<Stack>
<Stack.Screen name="index" options={{}} />
<Stack.Screen name="index" options={{ headerShown: false }} />
</Stack>
);
}
4 changes: 2 additions & 2 deletions companion/app/(tabs)/(event-types)/index.ios.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { buttonStyle, frame, padding } from "@expo/ui/swift-ui/modifiers";
import { Ionicons } from "@expo/vector-icons";
import * as Clipboard from "expo-clipboard";
import { isLiquidGlassAvailable } from "expo-glass-effect";
import { Image } from "expo-image";
import { Stack, useRouter } from "expo-router";
import { useMemo, useState } from "react";
import {
Expand All @@ -29,12 +30,11 @@ import {
import { CalComAPIService, type EventType } from "@/services/calcom";
import { showErrorAlert } from "@/utils/alerts";
import { openInAppBrowser } from "@/utils/browser";
import { getAvatarUrl } from "@/utils/getAvatarUrl";
import { getEventDuration } from "@/utils/getEventDuration";
import { offlineAwareRefresh } from "@/utils/network";
import { normalizeMarkdown } from "@/utils/normalizeMarkdown";
import { slugify } from "@/utils/slugify";
import { Image } from "expo-image";
import { getAvatarUrl } from "@/utils/getAvatarUrl";

export default function EventTypesIOS() {
const router = useRouter();
Expand Down
Loading
Loading