diff --git a/Makefile b/Makefile index ce37510a5..b1c8fc9a7 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # DeerFlow - Unified Development Environment -.PHONY: help config config-upgrade check check-agent-guidance install extension-install extension-list extension-enable extension-disable extension-remove setup doctor support-bundle detect-thread-boundaries detect-blocking-io dev dev-daemon start start-daemon nginx stop up down clean docker-init docker-start docker-stop docker-logs docker-logs-frontend docker-logs-gateway docker-logs-redis +.PHONY: help config config-upgrade check check-agent-guidance install extension-install extension-list extension-enable extension-disable extension-remove setup doctor support-bundle detect-thread-boundaries detect-blocking-io dev dev-daemon start start-daemon nginx stop up down clean docker-init docker-start docker-stop docker-logs docker-logs-frontend docker-logs-gateway docker-logs-redis setup-sandbox BASH ?= bash BACKEND_UV_RUN = cd backend && uv run diff --git a/frontend/src/components/landing/sections/whats-new-section.tsx b/frontend/src/components/landing/sections/whats-new-section.tsx index a60dca720..c347bae28 100644 --- a/frontend/src/components/landing/sections/whats-new-section.tsx +++ b/frontend/src/components/landing/sections/whats-new-section.tsx @@ -68,7 +68,7 @@ export function WhatsNewSection({ className }: { className?: string }) { return (
{ const textarea = page.getByPlaceholder(/how can i assist you/i); await expect(textarea).toBeVisible({ timeout: 15_000 }); await expect( - page.getByText("Deerflow is AI and can make mistakes", { exact: true }), + page.getByText("DeerFlow is AI and can make mistakes", { exact: true }), ).toBeVisible(); }); diff --git a/frontend/tests/unit/core/i18n/translations.test.ts b/frontend/tests/unit/core/i18n/translations.test.ts index e66953e90..5a3ec532a 100644 --- a/frontend/tests/unit/core/i18n/translations.test.ts +++ b/frontend/tests/unit/core/i18n/translations.test.ts @@ -9,7 +9,7 @@ describe("core copy loading", () => { loadTranslations("zh-CN"), ]); expect(english.inputBox.disclaimer).toBe( - "Deerflow is AI and can make mistakes", + "DeerFlow is AI and can make mistakes", ); expect(chinese.inputBox.disclaimer).toBe( "内容由AI生成,重要信息请务必核查",