From 5a07ee1b8df8a25fae0c3c969bb1f893dc0a609a Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 30 Dec 2024 13:01:06 -0500 Subject: [PATCH] fix --- src/components/Options.tsx | 3 ++- src/components/ToolTippedText.tsx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/Options.tsx b/src/components/Options.tsx index 62ed3883..c43be56d 100644 --- a/src/components/Options.tsx +++ b/src/components/Options.tsx @@ -1,4 +1,5 @@ -import type React, { useRef, useState } from "react"; +import type React from "react"; +import { useRef, useState } from "react"; import { type CompilerApi, type CompilerPackageNames, diff --git a/src/components/ToolTippedText.tsx b/src/components/ToolTippedText.tsx index bc847800..97d4fc3b 100644 --- a/src/components/ToolTippedText.tsx +++ b/src/components/ToolTippedText.tsx @@ -1,4 +1,5 @@ -import type React, { useState } from "react"; +import type React from "react"; +import { useState } from "react"; export interface ToolTippedTextProps { text: string;