Skip to content

Commit

Permalink
style: fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
keksiqc committed Nov 4, 2024
1 parent c29a990 commit f70faab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/ButtonContainer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { Config } from '@/types'
import { Button } from '@/components/ui/button'

import { Icon } from '@iconify/react'

export function ButtonContainer({ config }: { config: Config }) {
Expand Down
1 change: 1 addition & 0 deletions src/components/UserContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export function UserContainer({ config }: { config: Config }) {
if (config?.discordID) {
const { data } = useLanyard(config.discordID) // eslint-disable-line react-hooks/rules-of-hooks
userName = data?.discord_user.global_name

avatarUrl = `https://cdn.discordapp.com/avatars/${config.discordID}/${data?.discord_user.avatar}.webp?size=256`
}
}
Expand Down

0 comments on commit f70faab

Please sign in to comment.