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 b77ff3a commit 9df0cffCopy full SHA for 9df0cff
data-browser/src/routes/SettingsAgent.tsx
@@ -37,7 +37,7 @@ export function SettingsAgentRoute() {
37
<Guard>
38
{agent && (
39
<>
40
- {agent?.subject?.startsWith('http://localhost') && (
+ {agent?.subject?.includes('localhost') && (
41
<p>
42
<ErrorLook>Warning:</ErrorLook>
43
{
data-browser/src/views/DrivePage.tsx
@@ -54,7 +54,7 @@ function DrivePage({ resource }: ResourcePageProps): JSX.Element {
54
</CardRow>
55
</CardInsideFull>
56
</Card>
57
- {baseURL.startsWith('http://localhost') && (
+ {baseURL.includes('localhost') && (
58
59
You are running Atomic-Server on `localhost`, which means that it will
60
not be available from any other machine than your current local
0 commit comments