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:
Felipe Coutinho
2025-11-22 20:29:25 -03:00
parent ac24961e4b
commit 3ce8541a56
21 changed files with 57 additions and 30 deletions

View File

@@ -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,