moved embed and webhooks from settings into /integrations (#978)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { CodeIcon, CreditCardIcon, KeyIcon, UserGroupIcon, UserIcon } from "@heroicons/react/solid";
|
||||
import { CreditCardIcon, KeyIcon, UserGroupIcon, UserIcon } from "@heroicons/react/solid";
|
||||
import React from "react";
|
||||
|
||||
import { useLocale } from "@lib/hooks/useLocale";
|
||||
@@ -19,7 +19,6 @@ export default function SettingsShell({ children }: { children: React.ReactNode
|
||||
href: "/settings/security",
|
||||
icon: KeyIcon,
|
||||
},
|
||||
{ name: t("embed_and_webhooks"), href: "/settings/embed", icon: CodeIcon },
|
||||
{
|
||||
name: t("teams"),
|
||||
href: "/settings/teams",
|
||||
|
||||
@@ -11,7 +11,7 @@ import Button from "@components/ui/Button";
|
||||
|
||||
export default function WebhookListItem(props: {
|
||||
onChange: () => void;
|
||||
key: number;
|
||||
key: string;
|
||||
webhook: Webhook;
|
||||
onEditWebhook: () => void;
|
||||
}) {
|
||||
|
||||
Reference in New Issue
Block a user