mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 02:51:46 +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;
|
||||
};
|
||||
|
||||
async function fetchAllCategories(
|
||||
userId: string,
|
||||
): Promise<CategoryOption[]> {
|
||||
async function fetchAllCategories(userId: string): Promise<CategoryOption[]> {
|
||||
const result = await db
|
||||
.select({
|
||||
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 = {
|
||||
name?: string | null;
|
||||
|
||||
@@ -151,7 +151,9 @@ export const InboxCard = memo(function InboxCard({
|
||||
|
||||
<CardContent className="min-h-0 flex-1 overflow-hidden py-2">
|
||||
{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">
|
||||
{item.originalText}
|
||||
|
||||
@@ -99,8 +99,7 @@ export function DeleteAccountForm() {
|
||||
Preferências do app, insights salvos e tokens do Companion
|
||||
</li>
|
||||
<li className="font-medium text-foreground">
|
||||
Categorias padrão e pessoa admin serão recriadas
|
||||
automaticamente
|
||||
Categorias padrão e pessoa admin serão recriadas automaticamente
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
@@ -228,9 +228,7 @@ function buildColumns({
|
||||
className="text-muted-foreground"
|
||||
aria-hidden
|
||||
/>
|
||||
<span className="sr-only">
|
||||
Dividido entre pessoas
|
||||
</span>
|
||||
<span className="sr-only">Dividido entre pessoas</span>
|
||||
</span>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent side="top">
|
||||
|
||||
Reference in New Issue
Block a user