Compare commits

...

2 Commits

Author SHA1 Message Date
Antoine M
522b583927 RESPONSIVE FIX
All checks were successful
continuous-integration/drone/push Build is passing
2026-05-21 09:48:39 +02:00
Antoine M
dfbdaa7416 REFACTOR Remove unecessayr console.log 2026-05-21 09:43:21 +02:00
2 changed files with 2 additions and 4 deletions

View File

@ -4,7 +4,7 @@
}
.post-grid__toolbar {
@apply items-start gap-y-4;
@apply flex flex-col md:grid items-start gap-y-4;
grid-template-columns: max-content 1fr;
grid-template-rows: auto auto;
@ -25,7 +25,7 @@
select[name='sort_by'] {
grid-column: 2;
grid-row: 2;
@apply justify-self-end;
@apply w-full md:w-fit justify-self-end;
}
.search-by {

View File

@ -64,8 +64,6 @@ export default function archivesInit() {
if (!response.ok) throw new Error(`HTTP ${response.status}`);
const data = await response.json();
console.log('data', data);
// Ignore si une requête plus récente a été envoyée
if (requestId !== lastRequestId) return;