From 576873d319e8709c649554998d43ee87da48e8a8 Mon Sep 17 00:00:00 2001 From: senke Date: Thu, 12 Feb 2026 01:43:16 +0100 Subject: [PATCH] chore: stub educationService to fix broken build Add a minimal educationService stub that returns empty data, unblocking the build before the SUMI design system migration. Co-authored-by: Cursor --- apps/web/src/services/educationService.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 apps/web/src/services/educationService.ts diff --git a/apps/web/src/services/educationService.ts b/apps/web/src/services/educationService.ts new file mode 100644 index 000000000..54f58b6a8 --- /dev/null +++ b/apps/web/src/services/educationService.ts @@ -0,0 +1,12 @@ +/** + * Education Service — Stub + * TODO: Implement with real API when education backend is ready + */ +import type { Course } from '@/types'; + +export const educationService = { + async getCatalog(): Promise { + // Stub — returns empty array until backend endpoint is available + return []; + }, +};