fixed search routes
parent
b0958a6e19
commit
e6ba11a1ec
|
@ -143,7 +143,7 @@ export const KBarRoot = ({ children }: { children: React.ReactNode }) => {
|
||||||
section: "security",
|
section: "security",
|
||||||
shortcut: ["c", "p"],
|
shortcut: ["c", "p"],
|
||||||
keywords: "change modify password",
|
keywords: "change modify password",
|
||||||
perform: () => router.push("/settings/security"),
|
perform: () => router.push("/settings/security/password"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "two-factor",
|
id: "two-factor",
|
||||||
|
@ -151,7 +151,7 @@ export const KBarRoot = ({ children }: { children: React.ReactNode }) => {
|
||||||
section: "security",
|
section: "security",
|
||||||
shortcut: ["t", "f", "a"],
|
shortcut: ["t", "f", "a"],
|
||||||
keywords: "two factor authentication",
|
keywords: "two factor authentication",
|
||||||
perform: () => router.push("/settings/security"),
|
perform: () => router.push("/settings/security/two-factor-auth"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "impersonation",
|
id: "impersonation",
|
||||||
|
@ -159,7 +159,7 @@ export const KBarRoot = ({ children }: { children: React.ReactNode }) => {
|
||||||
section: "security",
|
section: "security",
|
||||||
shortcut: ["u", "i"],
|
shortcut: ["u", "i"],
|
||||||
keywords: "user impersonation",
|
keywords: "user impersonation",
|
||||||
perform: () => router.push("/settings/security"),
|
perform: () => router.push("/settings/security/impersonation"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "webhooks",
|
id: "webhooks",
|
||||||
|
@ -167,7 +167,7 @@ export const KBarRoot = ({ children }: { children: React.ReactNode }) => {
|
||||||
section: "developer",
|
section: "developer",
|
||||||
shortcut: ["w", "h"],
|
shortcut: ["w", "h"],
|
||||||
keywords: "webhook automation",
|
keywords: "webhook automation",
|
||||||
perform: () => router.push("/settings/developer"),
|
perform: () => router.push("/settings/developer/webhooks"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "api-keys",
|
id: "api-keys",
|
||||||
|
@ -175,7 +175,7 @@ export const KBarRoot = ({ children }: { children: React.ReactNode }) => {
|
||||||
section: "developer",
|
section: "developer",
|
||||||
shortcut: ["a", "p", "i"],
|
shortcut: ["a", "p", "i"],
|
||||||
keywords: "api keys",
|
keywords: "api keys",
|
||||||
perform: () => router.push("/settings/developer"),
|
perform: () => router.push("/settings/developer/api-keys"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "billing",
|
id: "billing",
|
||||||
|
|
Loading…
Reference in New Issue