chore(buddybook): setup linter
This commit is contained in:
parent
7351bbbc6c
commit
84aa782bc9
|
@ -7,7 +7,7 @@ import { Button } from "@/components/ui/button"
|
|||
import { type LightNode } from "@waku/sdk"
|
||||
import { useWaku } from "@waku/react"
|
||||
import { Loader2 } from "lucide-react"
|
||||
import { Routes, Route, Navigate, Link, useParams } from 'react-router-dom'
|
||||
import { Routes, Route, Navigate, Link } from 'react-router-dom'
|
||||
import { BlockPayload, getMessagesFromStore, subscribeToFilter } from './lib/waku'
|
||||
import TelemetryOptIn from './components/TelemetryOptIn';
|
||||
import TelemetryPage from './components/TelemetryPage';
|
||||
|
|
|
@ -2,8 +2,7 @@ import * as React from "react"
|
|||
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
export interface InputProps
|
||||
extends React.InputHTMLAttributes<HTMLInputElement> {}
|
||||
export type InputProps = React.InputHTMLAttributes<HTMLInputElement>
|
||||
|
||||
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
||||
({ className, type, ...props }, ref) => {
|
||||
|
|
|
@ -2,8 +2,7 @@ import * as React from "react"
|
|||
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
export interface TextareaProps
|
||||
extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {}
|
||||
export type TextareaProps = React.TextareaHTMLAttributes<HTMLTextAreaElement>
|
||||
|
||||
const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
|
||||
({ className, ...props }, ref) => {
|
||||
|
|
Loading…
Reference in New Issue