Fix type-only import for ImgHTMLAttributes

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vadym Samoilenko 2026-03-11 14:03:07 +00:00
parent e9e19fbd9f
commit 05b25e382c

View file

@ -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<HTMLImageElement> {