From 93ae35319e0b5c15712739384d678ae8c4f5d51d Mon Sep 17 00:00:00 2001 From: Floke Date: Sat, 16 May 2026 11:33:07 +0000 Subject: [PATCH] [36288f42] Keine Zusammenfassung angegeben. Keine Zusammenfassung angegeben. --- .dev_session/SESSION_INFO | 2 +- patch_syntax.py | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 patch_syntax.py diff --git a/.dev_session/SESSION_INFO b/.dev_session/SESSION_INFO index 3d1c8a472..d2e4ea4e0 100644 --- a/.dev_session/SESSION_INFO +++ b/.dev_session/SESSION_INFO @@ -1 +1 @@ -{"task_id": "35588f42-8544-800a-9eb7-e62ce4ce30e4", "token": "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", "readme_path": "readme.md", "session_start_time": "2026-05-15T21:12:57.221538"} \ No newline at end of file +{"task_id": "36288f42-8544-807a-a70a-e75f676885c2", "token": "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", "readme_path": "readme.md", "session_start_time": "2026-05-16T11:33:05.686975"} \ No newline at end of file diff --git a/patch_syntax.py b/patch_syntax.py deleted file mode 100644 index 022173295..000000000 --- a/patch_syntax.py +++ /dev/null @@ -1,16 +0,0 @@ -import sys - -with open('fotograf-de-scraper/frontend/src/App.tsx', 'r') as f: - content = f.read() - -# Fix the syntax error: '? .replace' should be '? selectedJob.name.replace' -old_syntax = "? .replace(/\\(JOB\\d+\\)/gi, '')" -new_syntax = "? selectedJob.name.replace(/\\(JOB\\d+\\)/gi, '')" - -if old_syntax in content: - content = content.replace(old_syntax, new_syntax) - with open('fotograf-de-scraper/frontend/src/App.tsx', 'w') as f: - f.write(content) - print("Syntax error fixed") -else: - print("Syntax error string not found")