chore: better Prettier config for easier reviews

This commit is contained in:
2023-10-23 23:33:39 +02:00
parent a8781724d4
commit 71ea41695f
209 changed files with 4093 additions and 4114 deletions

View File

@ -1,11 +1,11 @@
import Link from 'next/link'
import { CogIcon, PlusIcon } from '@heroicons/react/solid'
import Link from "next/link"
import { CogIcon, PlusIcon } from "@heroicons/react/solid"
import { useGuildMember } from '../../../contexts/GuildMember'
import { Divider } from '../../design/Divider'
import { Channels } from '../Channels'
import { IconButton } from '../../design/IconButton'
import type { GuildsChannelsPath } from '..'
import { useGuildMember } from "../../../contexts/GuildMember"
import { Divider } from "../../design/Divider"
import { Channels } from "../Channels"
import { IconButton } from "../../design/IconButton"
import type { GuildsChannelsPath } from ".."
export interface GuildLeftSidebarProps {
path: GuildsChannelsPath
@ -17,23 +17,23 @@ export const GuildLeftSidebar: React.FC<GuildLeftSidebarProps> = (props) => {
const { guild, member } = useGuildMember()
return (
<div className='mt-2 flex w-full flex-col justify-between'>
<div className='mx-8 mt-2 p-2 text-center'>
<h2 data-cy='guild-left-sidebar-title' className='text-xl'>
<div className="mt-2 flex w-full flex-col justify-between">
<div className="mx-8 mt-2 p-2 text-center">
<h2 data-cy="guild-left-sidebar-title" className="text-xl">
{guild.name}
</h2>
</div>
<Divider />
<Channels path={path} />
<Divider />
<div className='mb-1 flex items-center justify-center space-x-6 p-2'>
<div className="mb-1 flex items-center justify-center space-x-6 p-2">
{member.isOwner && (
<Link
href={`/application/${path.guildId}/channels/create`}
passHref
data-cy='link-add-channel'
data-cy="link-add-channel"
>
<IconButton className='h-10 w-10' title='Add a Channel'>
<IconButton className="h-10 w-10" title="Add a Channel">
<PlusIcon />
</IconButton>
</Link>
@ -41,9 +41,9 @@ export const GuildLeftSidebar: React.FC<GuildLeftSidebarProps> = (props) => {
<Link
href={`/application/${path.guildId}/settings`}
passHref
data-cy='link-settings-guild'
data-cy="link-settings-guild"
>
<IconButton className='h-7 w-7' title='Settings'>
<IconButton className="h-7 w-7" title="Settings">
<CogIcon />
</IconButton>
</Link>

View File

@ -1 +1 @@
export * from './GuildLeftSidebar'
export * from "./GuildLeftSidebar"