Skip to content

Commit

Permalink
chore: fix minor errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vutuanlinh2k2 committed Jul 28, 2023
1 parent b0a097e commit 663538a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apps/bridge-dapp/src/containers/Layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
Banner,
Footer,
SideBarItemProps,
SideBarFooterProps,
SideBarFooterType,
Logo,
LogoWithoutName,
SideBar,
Expand Down Expand Up @@ -60,7 +60,7 @@ const items: SideBarItemProps[] = [
},
];

const footer: SideBarFooterProps = {
const footer: SideBarFooterType = {
name: 'Webb Docs',
isInternal: false,
href: WEBB_DOCS_URL,
Expand Down
4 changes: 2 additions & 2 deletions apps/hubble-stats/constants/sideBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
Logo,
LogoWithoutName,
SideBarItemProps,
SideBarFooterProps,
SideBarFooterType,
SidebarProps,
} from '@webb-tools/webb-ui-components';
import { ContrastTwoLine, DocumentationIcon, Tangle } from '@webb-tools/icons';
Expand Down Expand Up @@ -59,7 +59,7 @@ const sideBarItems: SideBarItemProps[] = [
},
];

const sideBarFooter: SideBarFooterProps = {
const sideBarFooter: SideBarFooterType = {
name: 'Webb Docs',
isInternal: false,
href: WEBB_DOCS_URL,
Expand Down
2 changes: 1 addition & 1 deletion libs/webb-ui-components/src/components/SideBar/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { IconBase } from '@webb-tools/icons/types';

import { LogoProps } from '../Logo/types';

type SideBarFooterType = {
export type SideBarFooterType = {
name: string;
isInternal: boolean;
href: string;
Expand Down

0 comments on commit 663538a

Please sign in to comment.