mirror of
https://github.com/sct/overseerr.git
synced 2025-12-29 00:56:55 +01:00
style: bump prettier and format app
This commit is contained in:
@@ -102,13 +102,12 @@ const UserList: React.FC = () => {
|
||||
pageIndex * currentPageSize
|
||||
}&sort=${currentSort}`
|
||||
);
|
||||
const {
|
||||
data: notificationSettings,
|
||||
} = useSWR<UserSettingsNotificationsResponse>(
|
||||
currentUser
|
||||
? `/api/v1/user/${currentUser?.id}/settings/notifications`
|
||||
: null
|
||||
);
|
||||
const { data: notificationSettings } =
|
||||
useSWR<UserSettingsNotificationsResponse>(
|
||||
currentUser
|
||||
? `/api/v1/user/${currentUser?.id}/settings/notifications`
|
||||
: null
|
||||
);
|
||||
|
||||
const [isDeleting, setDeleting] = useState(false);
|
||||
const [isImporting, setImporting] = useState(false);
|
||||
|
||||
Reference in New Issue
Block a user