add download cert

This commit is contained in:
2025-11-18 16:58:15 -03:00
parent a96dcb3e96
commit cd5f96210f
13 changed files with 417 additions and 23 deletions

View File

@@ -12,7 +12,7 @@ import {
} from 'lucide-react'
import { MeiliSearchFilterBuilder } from 'meilisearch-helper'
import { Suspense, useState } from 'react'
import { Await, Link, useParams, useSearchParams } from 'react-router'
import { Await, Link, Outlet, useParams, useSearchParams } from 'react-router'
import type { BookType } from 'xlsx'
import * as XLSX from 'xlsx'
@@ -221,6 +221,8 @@ export default function Route({ loaderData: { data } }) {
</DataTable>
)}
</Await>
<Outlet />
</Suspense>
)
}