Merge branch 'main' into nb-translation

This commit is contained in:
Alexander Hostrup 2024-09-20 23:39:59 +02:00 committed by GitHub
commit 18d6ca630a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 9 additions and 12 deletions

View file

@ -51,7 +51,10 @@ export class HydraApi {
expirationTimestamp: tokenExpirationTimestamp,
};
logger.log("Sign in received", this.userAuth);
logger.log(
"Sign in received. Token expiration timestamp:",
tokenExpirationTimestamp
);
await userAuthRepository.upsert(
{

View file

@ -19,6 +19,7 @@ export const gallerySliderMedia = style({
flexGrow: "0",
transition: "translate 0.3s ease-in-out",
borderRadius: "4px",
alignSelf: "center",
});
export const gallerySliderAnimationContainer = style({
@ -60,7 +61,6 @@ export const mediaPreviewButton = recipe({
base: {
cursor: "pointer",
width: "20%",
height: "20%",
display: "block",
flexShrink: "0",
flexGrow: "0",
@ -84,7 +84,6 @@ export const mediaPreviewButton = recipe({
export const mediaPreview = style({
width: "100%",
height: "100%",
display: "flex",
});

View file

@ -128,6 +128,7 @@ export function GallerySlider() {
src={image.path_full}
style={{ translate: `${-100 * mediaIndex}%` }}
alt={t("screenshot", { number: i + 1 })}
loading="lazy"
/>
))}