Skip to content

Commit ab2ab31

Browse files
authored
chore: named export / default export same time (#18012)
1 parent a08ae43 commit ab2ab31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/features/webhooks/pages/webhooks-view.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { useLocale } from "@calcom/lib/hooks/useLocale";
1111
import { UserPermissionRole } from "@calcom/prisma/enums";
1212
import { trpc } from "@calcom/trpc/react";
1313
import type { WebhooksByViewer } from "@calcom/trpc/server/routers/viewer/webhook/getByViewer.handler";
14-
import { Avatar, EmptyScreen, Meta, SkeletonContainer, SkeletonText } from "@calcom/ui";
14+
import { Avatar, EmptyScreen, SkeletonContainer, SkeletonText } from "@calcom/ui";
1515

1616
import { WebhookListItem, CreateNewWebhookButton } from "../components";
1717

@@ -26,7 +26,7 @@ const SkeletonLoader = () => {
2626
);
2727
};
2828

29-
export const WebhooksView = () => {
29+
const WebhooksView = () => {
3030
const { t } = useLocale();
3131
const session = useSession();
3232
const isAdmin = session.data?.user.role === UserPermissionRole.ADMIN;

0 commit comments

Comments
 (0)