chore: remover seções vazias de mudanças de código
Este commit remove seções vazias de mudanças de código do arquivo de mudanças. Isso ajuda a manter o histórico de mudanças mais limpo e organizado, facilitando a leitura e a compreensão das alterações realizadas no projeto.
This commit is contained in:
@@ -48,6 +48,14 @@ type NavSection = {
|
||||
items: NavItem[];
|
||||
};
|
||||
|
||||
const MONTH_PERIOD_PARAM = "periodo";
|
||||
|
||||
const PERIOD_AWARE_PATHS = new Set([
|
||||
"/dashboard",
|
||||
"/lancamentos",
|
||||
"/orcamentos",
|
||||
]);
|
||||
|
||||
export function NavMain({ sections }: { sections: NavSection[] }) {
|
||||
const pathname = usePathname();
|
||||
const searchParams = useSearchParams();
|
||||
@@ -167,7 +175,7 @@ export function NavMain({ sections }: { sections: NavSection[] }) {
|
||||
src={avatarSrc}
|
||||
alt={`Avatar de ${subItem.title}`}
|
||||
/>
|
||||
<AvatarFallback className="text-[10px] font-medium uppercase">
|
||||
<AvatarFallback className="text-xs font-medium uppercase">
|
||||
{initial}
|
||||
</AvatarFallback>
|
||||
</Avatar>
|
||||
@@ -196,11 +204,3 @@ export function NavMain({ sections }: { sections: NavSection[] }) {
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
const MONTH_PERIOD_PARAM = "periodo";
|
||||
|
||||
const PERIOD_AWARE_PATHS = new Set([
|
||||
"/dashboard",
|
||||
"/lancamentos",
|
||||
"/orcamentos",
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user