Skip to content

Commit

Permalink
fix: biome check
Browse files Browse the repository at this point in the history
  • Loading branch information
cmackenzie1 committed Nov 18, 2024
1 parent 752bc0e commit d0b3d4a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import '@mantine/core/styles.css';
import '@mantine/code-highlight/styles.css';

import type { Metadata } from 'next';
import { ColorSchemeScript, MantineProvider } from '@mantine/core';
import type { Metadata } from 'next';

export const metadata: Metadata = {
title: 'uuidgen.dev',
Expand Down
2 changes: 1 addition & 1 deletion app/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Footer from '@/components/Footer';
import Header from '@/components/Header';
import UuidGenerator from '@/components/UuidGenerator';
import { Container, Text, Box, Title, Stack, List, Space, ListItem } from '@mantine/core';
import { Box, Container, List, ListItem, Space, Stack, Text, Title } from '@mantine/core';

export default function Home() {
return (
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Group, Box, Center, Text, ActionIcon, Button } from '@mantine/core';
import { ActionIcon, Box, Button, Center, Group, Text } from '@mantine/core';
import { IconBrandGithub } from '@tabler/icons-react';

export default function Footer() {
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Group, Center, Title, Anchor } from '@mantine/core';
import { Anchor, Center, Group, Title } from '@mantine/core';
import Link from 'next/link';

export default function Header() {
Expand Down
4 changes: 2 additions & 2 deletions app/src/components/UuidGenerator.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
'use client';

import { Text, Stack, Group, NumberInput, Center, ScrollArea, NativeSelect, Fieldset } from '@mantine/core';
import { CodeHighlight } from '@mantine/code-highlight';
import { Center, Fieldset, Group, NativeSelect, NumberInput, ScrollArea, Stack, Text } from '@mantine/core';
import { Button } from '@mantine/core';
import { useForm } from '@mantine/form';
import { useState } from 'react';
import { Button } from '@mantine/core';
import { v4 as uuidv4, v7 as uuidv7 } from 'uuid';

export default function UuidGenerator() {
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"scripts": {
"pages:start": "cd pages && npm start",
"format": "pnpm biome format --write .",
"lint": "pnpm biome lint --write ."
"lint": "pnpm biome lint --write .",
"check": "pnpm biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "1.9.4"
Expand Down

0 comments on commit d0b3d4a

Please sign in to comment.