Fix some linting

This commit is contained in:
2025-10-08 13:57:33 +01:00
parent ef6f47582c
commit fe3d3451b8
2 changed files with 2 additions and 3 deletions

View File

@@ -1,9 +1,8 @@
'use client'; 'use client';
import { useState } from 'react'; import { useState } from 'react';
import Link from 'next/link';
import { Register, RegisterAccess, Note } from './types'; import { Register, RegisterAccess, Note } from './types';
import { Form, Card, Container, Row, Col, Tabs, Tab, Table, OverlayTrigger, Tooltip } from 'react-bootstrap'; import { Form, Container, Row, Table, OverlayTrigger, Tooltip } from 'react-bootstrap';
import RegisterDetail from "@/app/registers/RegisterDetail"; import RegisterDetail from "@/app/registers/RegisterDetail";
interface RegisterBrowserProps { interface RegisterBrowserProps {

View File

@@ -2,7 +2,7 @@ import { promises as fs } from 'fs';
import path from 'path'; import path from 'path';
import { notFound } from 'next/navigation'; import { notFound } from 'next/navigation';
import Link from 'next/link'; import Link from 'next/link';
import { Register, RegisterAccess } from '../../registers/types'; import { Register, RegisterAccess } from '@/app/registers/types';
import RegisterDetail from '@/app/registers/RegisterDetail'; import RegisterDetail from '@/app/registers/RegisterDetail';
import {Container, Row} from "react-bootstrap"; import {Container, Row} from "react-bootstrap";