Add section and validity date
All checks were successful
Build Docker image / build (push) Successful in 4m13s
Build Docker image / deploy (push) Successful in 3s
Build Docker image / verify (push) Successful in 55s

This commit is contained in:
Roman Krček
2025-08-06 12:31:44 +02:00
parent b5814ed552
commit 2f730fdbbb
3 changed files with 84 additions and 0 deletions

View File

@@ -144,3 +144,12 @@ export const pdfGenerationStatus = writable<{
stage: 'preparing',
progress: 0
});
// Card details for generation
export const cardDetails = writable<{
homeSection: string;
validityStart: string;
}>({
homeSection: '',
validityStart: ''
});