We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d48820 commit fce78c7Copy full SHA for fce78c7
MyApp.Client/src/components/FeatureLinks.tsx
@@ -18,6 +18,9 @@ export default () => {
18
<div className="pb-6">
19
<TextLink href="/ui" className={navClass("/ui")}>API Explorer</TextLink>
20
</div>
21
+ <div className="pb-6">
22
+ <TextLink href="/admin-ui" className={navClass("/admin-ui")}>Admin UI</TextLink>
23
+ </div>
24
25
<TextLink href="/about" className={navClass("/about")}>About</TextLink>
26
MyApp.Client/src/lib/gateway.ts
@@ -10,6 +10,7 @@ const serverRoutePaths = [
10
'/chat',
11
'/admin-ui',
12
'/swagger',
13
+ '/scalar',
14
]
15
16
export function isServerRoute(path:string) {
0 commit comments