Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lauti7 committed Dec 7, 2023
1 parent 1f130b8 commit 70e1309
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 5 additions & 1 deletion src/components/Notifications/Notifications.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import React, { useMemo } from 'react'

import NotificationsFeed from './NotificationsFeed'
import { NotificationActiveTab, DCLNotification, NotificationLocale } from './types'
import {
NotificationActiveTab,
DCLNotification,
NotificationLocale
} from './types'

import NotificationBell from '../Icons/Notifications/NotificationBell'
import NotificationBellActive from '../Icons/Notifications/NotificationBellActive'
Expand Down
6 changes: 5 additions & 1 deletion src/components/Notifications/NotificationsFeed.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import React, { useEffect, useMemo } from 'react'

import { Loader } from '../Loader/Loader'
import { NotificationActiveTab, DCLNotification, NotificationLocale } from './types'
import {
NotificationActiveTab,
DCLNotification,
NotificationLocale
} from './types'

import ItemSoldNotification from './NotificationTypes/ItemSoldNotification'
import RoyaltiesEarnedNotification from './NotificationTypes/RoyaltiesEarnedNotification'
Expand Down
4 changes: 2 additions & 2 deletions src/components/Notifications/types.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { NFTCategory, Rarity } from '@dcl/schemas'

export enum NotificationActiveTab {
NEWEST = "newest",
READ = "read"
NEWEST = 'newest',
READ = 'read'
}

export type NotificationLocale = 'en' | 'es' | 'zh'
Expand Down

0 comments on commit 70e1309

Please sign in to comment.