fixed AddLocationButton toltip translation

This commit is contained in:
2024-02-17 10:35:48 +01:00
parent 440ab6a815
commit 99ee9594ad
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
"use client";
import { PlusCircleIcon, HomeIcon } from "@heroicons/react/24/outline"; import { PlusCircleIcon, HomeIcon } from "@heroicons/react/24/outline";
import { YearMonth } from "../lib/db-types"; import { YearMonth } from "../lib/db-types";
import { formatYearMonth } from "../lib/format"; import { formatYearMonth } from "../lib/format";

View File

@@ -25,5 +25,6 @@ export const AddMonthButton:React.FC<AddMonthButtonProps> = ({ yearMonth }) => {
<span className="ml-1 mt-1 text-xs text-left leading-[1.2em]">{t("tooltip")}</span> <span className="ml-1 mt-1 text-xs text-left leading-[1.2em]">{t("tooltip")}</span>
</span> </span>
</Link> </Link>
</div>); </div>
);
} }