Skip to content

Commit

Permalink
fix(ui): vue image
Browse files Browse the repository at this point in the history
  • Loading branch information
Nabhag8848 committed Aug 13, 2024
1 parent 15f2920 commit 6f85383
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Icons } from '@revertdotdev/icons';
import { inter } from '@revertdotdev/fonts';
import { cn } from '@revertdotdev/utils';
import { useState } from 'react';
import Image from 'next/image';
import FrontendSDKContent from './FrontendSDKContent';

export function FrontendSdk({ userId, environment }: { userId: string; environment: string }) {
Expand Down Expand Up @@ -37,7 +36,7 @@ export function FrontendSdk({ userId, environment }: { userId: string; environme
onClick={() => (!customPreferenceView ? setCustomPreferenceView(true) : null)}
>
<div className="flex items-start justify-start gap-3">
<Image src="/vuejs-icon.svg" alt="Vuejs" height={24} width={24} />
<img src="/vuejs-icon.svg" alt="Vuejs" height={24} width={24} />
<div className="flex flex-col gap-1">
<h4 className="text-left text-gray-50/70 text-base font-bold">Vue.js</h4>
</div>
Expand Down

0 comments on commit 6f85383

Please sign in to comment.