mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 11:01:45 +00:00
style(format): corrigir formatação Biome em 5 arquivos
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -51,9 +51,7 @@ type UniqueCategory = {
|
|||||||
icon: string | null;
|
icon: string | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
async function fetchAllCategories(
|
async function fetchAllCategories(userId: string): Promise<CategoryOption[]> {
|
||||||
userId: string,
|
|
||||||
): Promise<CategoryOption[]> {
|
|
||||||
const result = await db
|
const result = await db
|
||||||
.select({
|
.select({
|
||||||
id: categories.id,
|
id: categories.id,
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
import { formatCurrentDate, getGreeting } from "@/features/dashboard/widget-registry/welcome-widget";
|
import {
|
||||||
|
formatCurrentDate,
|
||||||
|
getGreeting,
|
||||||
|
} from "@/features/dashboard/widget-registry/welcome-widget";
|
||||||
|
|
||||||
type DashboardWelcomeProps = {
|
type DashboardWelcomeProps = {
|
||||||
name?: string | null;
|
name?: string | null;
|
||||||
|
|||||||
@@ -151,7 +151,9 @@ export const InboxCard = memo(function InboxCard({
|
|||||||
|
|
||||||
<CardContent className="min-h-0 flex-1 overflow-hidden py-2">
|
<CardContent className="min-h-0 flex-1 overflow-hidden py-2">
|
||||||
{item.originalTitle && (
|
{item.originalTitle && (
|
||||||
<p className="mb-1 line-clamp-2 text-sm font-medium">{item.originalTitle}</p>
|
<p className="mb-1 line-clamp-2 text-sm font-medium">
|
||||||
|
{item.originalTitle}
|
||||||
|
</p>
|
||||||
)}
|
)}
|
||||||
<p className="line-clamp-4 whitespace-pre-wrap text-sm text-muted-foreground">
|
<p className="line-clamp-4 whitespace-pre-wrap text-sm text-muted-foreground">
|
||||||
{item.originalText}
|
{item.originalText}
|
||||||
|
|||||||
@@ -99,8 +99,7 @@ export function DeleteAccountForm() {
|
|||||||
Preferências do app, insights salvos e tokens do Companion
|
Preferências do app, insights salvos e tokens do Companion
|
||||||
</li>
|
</li>
|
||||||
<li className="font-medium text-foreground">
|
<li className="font-medium text-foreground">
|
||||||
Categorias padrão e pessoa admin serão recriadas
|
Categorias padrão e pessoa admin serão recriadas automaticamente
|
||||||
automaticamente
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|||||||
@@ -228,9 +228,7 @@ function buildColumns({
|
|||||||
className="text-muted-foreground"
|
className="text-muted-foreground"
|
||||||
aria-hidden
|
aria-hidden
|
||||||
/>
|
/>
|
||||||
<span className="sr-only">
|
<span className="sr-only">Dividido entre pessoas</span>
|
||||||
Dividido entre pessoas
|
|
||||||
</span>
|
|
||||||
</span>
|
</span>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipContent side="top">
|
<TooltipContent side="top">
|
||||||
|
|||||||
Reference in New Issue
Block a user