Skip to content

Commit a0d124f

Browse files
authored
Merge branch 'main' into leafty/upgrade-codegen
2 parents 40e2b84 + e8cf8c2 commit a0d124f

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

client/server/constants.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,14 @@ export const SITEMAP = `<?xml version="1.0" encoding="UTF-8"?>
4343
<loc>${BASE_URL}/help/release</loc>
4444
</url>
4545
</urlset>`;
46-
export const ROBOTS = `Sitemap: ${BASE_URL} /sitemap.xml`;
46+
export const ROBOTS = `User-agent: Applebot
47+
User-agent: AhrefsBot
48+
User-agent: GPTBot
49+
User-agent: ClaudeBot
50+
User-agent: Google-Extended
51+
Disallow: /p/*/sessions/*/start
52+
53+
Sitemap: ${BASE_URL}/sitemap.xml`;
4754
export const CONFIG_JSON = {
4855
UI_VERSION: process.env.UI_VERSION || "",
4956
RENKU_CHART_VERSION: process.env.RENKU_CHART_VERSION,

client/src/features/dataConnectorsV2/deposits/DepositCreationModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export default function DepositCreationModal({
138138
<Input
139139
id="name"
140140
type="text"
141-
placeholder="Name (local)"
141+
placeholder="Name"
142142
invalid={!!fieldState.error}
143143
{...field}
144144
/>

client/src/features/dataConnectorsV2/deposits/DepositEditModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export default function DepositEditModal({
160160
<Input
161161
id="name"
162162
type="text"
163-
placeholder="Name (local)"
163+
placeholder="Name"
164164
invalid={!!fieldState.error}
165165
{...field}
166166
/>

0 commit comments

Comments
 (0)