This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: format

+3 -16
+2 -11
src/webapp/features/cards/components/urlCardActions/UrlCardActions.tsx
··· 17 17 } from '@mantine/core'; 18 18 import { Fragment, useState } from 'react'; 19 19 import { FiPlus } from 'react-icons/fi'; 20 - import { 21 - BsPin, 22 - BsPinFill, 23 - BsThreeDots, 24 - BsTrash2Fill, 25 - } from 'react-icons/bs'; 20 + import { BsPin, BsPinFill, BsThreeDots, BsTrash2Fill } from 'react-icons/bs'; 26 21 import RemoveCardFromCollectionModal from '../removeCardFromCollectionModal/RemoveCardFromCollectionModal'; 27 22 import RemoveCardFromLibraryModal from '../removeCardFromLibraryModal/RemoveCardFromLibraryModal'; 28 23 import AddCardToModal from '@/features/cards/components/addCardToModal/AddCardToModal'; ··· 243 238 isCollectionOwner && ( 244 239 <Menu.Item 245 240 leftSection={ 246 - props.isPinnedInCollection ? ( 247 - <BsPinFill /> 248 - ) : ( 249 - <BsPin /> 250 - ) 241 + props.isPinnedInCollection ? <BsPinFill /> : <BsPin /> 251 242 } 252 243 onClick={(e) => { 253 244 e.stopPropagation();
+1 -5
src/webapp/features/settings/lib/dataSync/types.ts
··· 1 - export type DataSyncStatus = 2 - | 'in-sync' 3 - | 'out-of-sync' 4 - | 'syncing' 5 - | 'failed'; 1 + export type DataSyncStatus = 'in-sync' | 'out-of-sync' | 'syncing' | 'failed'; 6 2 7 3 export interface DataSyncDrift { 8 4 /** Records in the user's PDS that are not in the Semble DB. */