diff --git a/packages/types/src/favorite/favorite.d.ts b/packages/types/src/favorite/favorite.d.ts index c8ec2509d..65df79384 100644 --- a/packages/types/src/favorite/favorite.d.ts +++ b/packages/types/src/favorite/favorite.d.ts @@ -1,14 +1,4 @@ -type TLogoProps = { - in_use: "emoji" | "icon"; - emoji?: { - value?: string; - url?: string; - }; - icon?: { - name?: string; - color?: string; - }; -}; +import { TLogoProps } from "../common"; export type IFavorite = { id: string; diff --git a/web/ce/components/global/product-updates.tsx b/web/ce/components/global/product-updates.tsx index 72f5938a5..700883574 100644 --- a/web/ce/components/global/product-updates.tsx +++ b/web/ce/components/global/product-updates.tsx @@ -15,7 +15,7 @@ export const ProductUpdates: FC = observer(() => ( target="_blank" className="flex w-full items-center justify-start text-xs hover:bg-custom-background-80" > - What's new? + What's new ));