Skip to content

Commit 8b97248

Browse files
committed
fix: lint
1 parent 4332d46 commit 8b97248

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

src/components/Facepile/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@ import React, { useState, useRef, useEffect } from 'react'
22
import { motion, AnimatePresence } from 'motion/react'
33
import { ResponsiveValue, Size } from '../../types'
44
import { UserAvatar, UserAvatarProps } from '../UserAvatar'
5-
import {
6-
userAvatarSizeMap,
7-
userAvatarSizeMapper,
8-
} from '../UserAvatar/sizeMap'
5+
import { userAvatarSizeMap, userAvatarSizeMapper } from '../UserAvatar/sizeMap'
96
import { cn, getResponsiveClasses } from '../../lib/utils'
107
import useTailwindBreakpoint from '../../hooks/useTailwindBreakpoint'
118
import { resolveSizeForBreakpoint } from '../../lib/responsiveUtils'

src/components/Stack/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import React from 'react'
22
import { cn, getResponsiveClasses } from '../../lib/utils'
33
import { Gap, Padding, ResponsiveValue } from '../../types'
4-
import { gapMapper, paddingMapper, wrapMapper } from '../../lib/responsiveMappers'
4+
import {
5+
gapMapper,
6+
paddingMapper,
7+
wrapMapper,
8+
} from '../../lib/responsiveMappers'
59

610
type StackDirection = 'horizontal' | 'vertical'
711
type StackAlign = 'stretch' | 'start' | 'center' | 'end' | 'baseline'

src/components/WorkspaceSelector/OrgSelector.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
import * as React from 'react'
22

3-
import {
4-
Command,
5-
CommandInput,
6-
CommandItem,
7-
CommandList,
8-
} from '../Command'
3+
import { Command, CommandInput, CommandItem, CommandList } from '../Command'
94
import { Popover, PopoverContent, PopoverTrigger } from '../Popover'
105
import { Org } from '.'
116
import { Icon } from '../Icon'

src/vite-env.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ declare module '*.riv' {
44
const value: string
55
export default value
66
}
7-

0 commit comments

Comments
 (0)