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
1 change: 1 addition & 0 deletions apps/web/app/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export function Providers({ isEmbed, children, country }: ProvidersProps) {
<TrpcProvider>
<ToastProvider position="bottom-center">
{!isEmbed && !isBookingPage && <NotificationSoundHandler />}
{/* @ts-expect-error react-inlinesvg/provider is incompatible with @types/react@18.0.26. Remove when these types are compatible. */}
<CacheProvider>
<WebPushProvider>{children}</WebPushProvider>
</CacheProvider>
Expand Down
1 change: 1 addition & 0 deletions apps/web/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ function MyApp(props: AppProps) {
return (
<SessionProvider session={pageProps.session ?? undefined}>
<WebPushProvider>
{/* @ts-expect-error react-inlinesvg/provider is incompatible with @types/react@18.0.26. Remove when these types are compatible. */}
<CacheProvider>
{Component.PageWrapper ? <Component.PageWrapper {...props} /> : <Component {...pageProps} />}
</CacheProvider>
Expand Down
2 changes: 1 addition & 1 deletion packages/features/bookings/lib/EventManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ export default class EventManager {
});
}

log.debug("RescheduleOrganizerChanged: Creating Event and Meeting for for new booking");
log.debug("RescheduleOrganizerChanged: Creating Event and Meeting for new booking");
const createdEvent = await this.create(originalEvt);
results.push(...createdEvent.results);
updatedBookingReferences.push(...createdEvent.referencesToCreate);
Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -2516,7 +2516,7 @@
"recommended_next_steps": "Recommended next steps",
"create_a_managed_event": "Create a managed event type",
"meetings_are_better_with_the_right": "Meetings are better with the right team members there. Invite them now.",
"create_a_one_one_template": "Create a one-one one template for an event type and distribute it to multiple members.",
"create_a_one_one_template": "Create a one-on-one template for an event type and distribute it to multiple members.",
"collective_or_roundrobin": "Collective or round-robin",
"book_your_team_members": "Book your team members together with collective events or cycle through to get the right person with round-robin.",
"event_no_longer_attending_subject": "No longer attending {{title}} at {{date}}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class ByTeamSlugAndEventTypeSlug_2024_09_04 extends GetAvailableSlotsInpu
@ApiProperty({
type: String,
description:
"When searching by eventTypeSlug a teamSlug must be provided too aka team who owns the the event type.",
"When searching by eventTypeSlug a teamSlug must be provided too aka team who owns the event type.",
example: "bob",
})
teamSlug!: string;
Expand Down
Loading