fix: remove unused IconButton import and format files

This commit is contained in:
J Chris Anderson 2025-03-25 09:49:34 -07:00
parent eda10b1212
commit 6e3db6f0ae
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
name: "Bug report"
name: 'Bug report'
description: Create a report to help us improve
body:
- type: markdown
@ -30,7 +30,7 @@ body:
label: Validations
description: Before submitting the issue, please make sure you do the following
options:
- label: "Please make your project public or accessible by URL. This will allow anyone trying to help you to easily reproduce the issue and provide assistance."
- label: 'Please make your project public or accessible by URL. This will allow anyone trying to help you to easily reproduce the issue and provide assistance.'
required: true
- type: markdown
attributes:

View File

@ -9,6 +9,7 @@ Bolt.new is an AI-powered web development agent that allows you to prompt, run,
Claude, v0, etc are incredible- but you can't install packages, run backends or edit code. Thats where Bolt.new stands out:
- **Full-Stack in the Browser**: Bolt.new integrates cutting-edge AI models with an in-browser development environment powered by **StackBlitzs WebContainers**. This allows you to:
- Install and run npm tools and libraries (like Vite, Next.js, and more)
- Run Node.js servers
- Interact with third-party APIs

View File

@ -2,7 +2,6 @@ import { motion, type Variants } from 'framer-motion';
import { useCallback, useEffect, useRef, useState } from 'react';
import { toast } from 'react-toastify';
import { Dialog, DialogButton, DialogDescription, DialogRoot, DialogTitle } from '~/components/ui/Dialog';
import { IconButton } from '~/components/ui/IconButton';
import { ThemeSwitch } from '~/components/ui/ThemeSwitch';
import { db, deleteById, getAll, chatId, type ChatHistoryItem } from '~/lib/persistence';
import { cubicEasingFn } from '~/utils/easings';