diff --git a/client/src/App.css b/client/src/App.css index 71283b3..8908705 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -532,7 +532,7 @@ body { .logbooks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); - gap: 16px; + gap: 24px; } .logbook-card { diff --git a/server/src/routes/sync.ts b/server/src/routes/sync.ts index fb0fa64..e299831 100644 --- a/server/src/routes/sync.ts +++ b/server/src/routes/sync.ts @@ -85,7 +85,8 @@ router.post('/push', async (req: any, res) => { // Parse Payload parameters const parsed = JSON.parse(data) - const { encryptedData, iv, tag } = parsed + const encryptedData = parsed.encryptedData || parsed.ciphertext + const { iv, tag } = parsed if (type === 'yacht') { if (action === 'delete') {