Skip to content

Commit

Permalink
fix: address linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
1egoman committed Oct 24, 2024
1 parent 1f0d908 commit 8b2900c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions packages/web/src/components/onboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ import React from 'react';
import { LayoutGridIcon, FileTextIcon } from 'lucide-react';
import { AiSettings } from '@/routes/settings';

type OnboardingModalProps = {};

const OnboardingModal: React.FunctionComponent<OnboardingModalProps> = () => {
const OnboardingModal: React.FunctionComponent = () => {
return (
<div className="flex flex-col gap-6">
<h2 className="text-3xl font-medium">Welcome to Srcbook!</h2>
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/routes/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
loadSrcbookExamples,
} from '@/lib/server';
import type { ExampleSrcbookType, SessionType } from '@/types';
import { useState, useEffect } from 'react';
import { useState } from 'react';
import { ImportSrcbookModal } from '@/components/import-export-srcbook-modal';
import GenerateSrcbookModal from '@/components/generate-srcbook-modal';
import {
Expand Down

0 comments on commit 8b2900c

Please sign in to comment.