The commit fixes an import error in `Sidebar.tsx` related to the `@/config/site` module. The error message indicates that the module cannot be resolved. The fix likely involves ensuring the correct path to the module or creating the missing file.
11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
|
|
import { ReactNode } from "react";
|
|
|
|
export interface MainNavItem {
|
|
title: string;
|
|
href?: string;
|
|
icon?: ReactNode;
|
|
disabled?: boolean;
|
|
external?: boolean;
|
|
}
|