Skip to content

Commit

Permalink
Fix StockedUpLogo element
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBartusek committed Feb 27, 2024
1 parent cc2a679 commit 9546349
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/client/src/components/StockedUpLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import LogoWhite from '../assets/stockedup-logo-white.png';

type LogoVariant = 'black' | 'white';

interface DokChatLogoProps
interface StockedUpLogoProps
extends React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> {
variant: LogoVariant;
}

function StockedUpLogo(props: DokChatLogoProps) {
function StockedUpLogo(props: StockedUpLogoProps) {
const variant = props.variant;

function getSrc(variant: LogoVariant): string {
Expand Down

0 comments on commit 9546349

Please sign in to comment.