singular & plural count

This commit is contained in:
Philipinho 2024-07-20 18:20:10 +01:00
parent 078959dfa0
commit 7f0fd45f3a
2 changed files with 5 additions and 2 deletions

View File

@ -92,10 +92,12 @@ function ImportFormatSelection({ spaceId, onClose }: ImportFormatSelection) {
}
if (pageCount > 0) {
const pageCountText = pageCount === 1 ? "1 page" : `${pageCount} pages`;
notifications.update({
id: alert,
color: "teal",
title: `Successfully imported ${pageCount} pages`,
title: `Successfully imported ${pageCountText}`,
message: "Your import is complete.",
icon: <IconCheck size={18} />,
loading: false,

View File

@ -3,6 +3,7 @@ import React, { useState } from "react";
import { useGetSpacesQuery } from "@/features/space/queries/space-query.ts";
import SpaceSettingsModal from "@/features/space/components/settings-modal.tsx";
import { useDisclosure } from "@mantine/hooks";
import { formatMemberCount } from "@/lib";
export default function SpaceList() {
const { data, isLoading } = useGetSpacesQuery();
@ -50,7 +51,7 @@ export default function SpaceList() {
</Group>
</Table.Td>
<Table.Td>{space.memberCount} members</Table.Td>
<Table.Td>{formatMemberCount(space.memberCount)}</Table.Td>
</Table.Tr>
))}
</Table.Tbody>