i18n
CI/CD Pipeline / Build and Push PocketBase Docker Image (push) Successful in 8s
CI/CD Pipeline / i18n Catalog Check (push) Failing after 10s
CI/CD Pipeline / Build and Push App Docker Image (push) Skipped
CI/CD Pipeline / Deploy to Kubernetes (push) Skipped

This commit is contained in:
yohlo
2026-08-08 15:29:40 -07:00
parent 22c282d8fa
commit 0a7b5fa00f
178 changed files with 13099 additions and 1285 deletions
+3 -1
View File
@@ -2,6 +2,7 @@ import { DatePicker, TimeInput } from "@mantine/dates";
import { ActionIcon, Stack } from "@mantine/core";
import { useRef } from "react";
import { ClockIcon } from "@phosphor-icons/react";
import { useLingui } from "@lingui/react/macro";
interface DateTimePickerProps {
value: Date | null;
@@ -16,6 +17,7 @@ const DateTimePicker = ({
label,
...rest
}: DateTimePickerProps) => {
const { t } = useLingui();
const timeRef = useRef<HTMLInputElement>(null);
const currentDate = value ? new Date(value) : null;
@@ -73,7 +75,7 @@ const DateTimePicker = ({
/>
<TimeInput
ref={timeRef}
label="Time"
label={t`Time`}
size="md"
value={formatTime(currentDate)}
onChange={handleTimeChange}