From 2ac4ec8de3ec86bc10423c1111400596ae2aa6b6 Mon Sep 17 00:00:00 2001 From: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:58:54 -0400 Subject: [PATCH] yay --- src/components/Board.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Board.tsx b/src/components/Board.tsx index 49f3839..42d5427 100644 --- a/src/components/Board.tsx +++ b/src/components/Board.tsx @@ -7,13 +7,13 @@ import { } from 'tldraw' import { useParams } from 'react-router-dom' import { ChatBoxTool } from '@/tools/ChatBoxTool' -import { IChatBoxShape, ChatBoxShape } from '@/shapes/ChatBoxShapeUtil' +import { ChatBoxShape } from '@/shapes/ChatBoxShapeUtil' import { VideoChatTool } from '@/tools/VideoChatTool' -import { IVideoChatShape, VideoChatShape } from '@/shapes/VideoChatShapeUtil' +import { VideoChatShape } from '@/shapes/VideoChatShapeUtil' import { multiplayerAssetStore } from '../client/multiplayerAssetStore' import { customSchema } from '../../worker/TldrawDurableObject' -import React, { useState, useEffect, useRef } from 'react'; +import React, { useState } from 'react'; import { ChatBox } from '@/shapes/ChatBoxShapeUtil'; import { components, uiOverrides } from '@/ui-overrides'