forked from git.gladyson/openmonetis
fix: corrige a grafia de "OpenSheets" para "Opensheets"
Este commit altera todas as ocorrências de "OpenSheets" para "Opensheets" em arquivos de layout, README, componentes e notificações, garantindo consistência na nomenclatura do projeto.
This commit is contained in:
@@ -209,7 +209,7 @@ const resolveUserLabel = (user: {
|
||||
if (user?.email && user.email.trim().length > 0) {
|
||||
return user.email;
|
||||
}
|
||||
return "OpenSheets";
|
||||
return "Opensheets";
|
||||
};
|
||||
|
||||
type InitialCandidate = {
|
||||
@@ -1320,8 +1320,12 @@ export async function deleteMultipleLancamentosAction(
|
||||
|
||||
// Send notifications
|
||||
const notificationData = existing
|
||||
.filter((item): item is typeof item & { pagadorId: NonNullable<typeof item.pagadorId> } =>
|
||||
Boolean(item.pagadorId)
|
||||
.filter(
|
||||
(
|
||||
item
|
||||
): item is typeof item & {
|
||||
pagadorId: NonNullable<typeof item.pagadorId>;
|
||||
} => Boolean(item.pagadorId)
|
||||
)
|
||||
.map((item) => ({
|
||||
pagadorId: item.pagadorId,
|
||||
|
||||
@@ -2,7 +2,7 @@ import PageDescription from "@/components/page-description";
|
||||
import { RiArrowLeftRightLine } from "@remixicon/react";
|
||||
|
||||
export const metadata = {
|
||||
title: "Lançamentos | OpenSheets",
|
||||
title: "Lançamentos | Opensheets",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
|
||||
Reference in New Issue
Block a user