Skip to content

Commit

Permalink
refactor: prefix type
Browse files Browse the repository at this point in the history
  • Loading branch information
emmenko committed Mar 13, 2023
1 parent 418648f commit 461f7ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/application-shell/src/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -599,10 +599,10 @@ const ApplicationMenu = (props: ApplicationMenuProps) => {
};
ApplicationMenu.displayName = 'ApplicationMenu';

type NavBarLayoutProps = {
type TNavBarLayoutProps = {
children: ReactNode;
};
const NavBarLayout = forwardRef<HTMLElement, NavBarLayoutProps>(
const NavBarLayout = forwardRef<HTMLElement, TNavBarLayoutProps>(
(props, ref) => (
<>
<Global
Expand All @@ -624,7 +624,7 @@ const NavBarLayout = forwardRef<HTMLElement, NavBarLayoutProps>(
);
NavBarLayout.displayName = 'NavBarLayout';

type NavbarProps = {
type TNavbarProps = {
applicationLocale: string;
projectKey: string;
environment: TApplicationContext<{
Expand All @@ -633,7 +633,7 @@ type NavbarProps = {
project: TFetchProjectQuery['project'];
onMenuItemClick?: MenuItemLinkProps['onClick'];
};
const NavBar = (props: NavbarProps) => {
const NavBar = (props: TNavbarProps) => {
const {
navBarNode,
isMenuOpen,
Expand Down

0 comments on commit 461f7ac

Please sign in to comment.