feat(cv): rebuild professional resume studio

This commit is contained in:
cesnimda
2026-08-24 20:21:23 +02:00
parent dca5daa1a2
commit 367b70681a
27 changed files with 827 additions and 187 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ test('public CV exposes the rendered CV and PDF download', async () => {
mockedApi.get.mockResolvedValueOnce({ data: { html: '<p>Public CV</p>', name: 'Ada Lovelace' } } as any);
render(
<MemoryRouter initialEntries={['/cv/public-slug']} future={{ v7_startTransition: true, v7_relativeSplatPath: true }}>
<MemoryRouter initialEntries={['/cv/public-slug']}>
<Routes><Route path="/cv/:slug" element={<PublicCvPage />} /></Routes>
</MemoryRouter>,
);