From 05b25e382c6670ff64e5fdf3d78f30faf92c33af Mon Sep 17 00:00:00 2001 From: Vadym Samoilenko Date: Wed, 11 Mar 2026 14:03:07 +0000 Subject: [PATCH] Fix type-only import for ImgHTMLAttributes Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/components/AuthImage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/AuthImage.tsx b/frontend/src/components/AuthImage.tsx index e3e7142..5fdd359 100644 --- a/frontend/src/components/AuthImage.tsx +++ b/frontend/src/components/AuthImage.tsx @@ -1,4 +1,5 @@ -import { useEffect, useState, ImgHTMLAttributes } from "react"; +import { useEffect, useState } from "react"; +import type { ImgHTMLAttributes } from "react"; import client from "../api/client"; interface AuthImageProps extends ImgHTMLAttributes {