Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoCpii committed Aug 19, 2024
1 parent 275423a commit fb2b637
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion packages/projects/client/src/pages/Board/BoardCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import CardContent from '@mui/material/CardContent';
import CardActions from '@mui/material/CardActions';
import Grid from '@mui/material/Grid';

import FaceIcon from '@mui/icons-material/Face';
import EditIcon from '@mui/icons-material/Edit';
import CloseIcon from '@mui/icons-material/Close';
import DeleteIcon from '@mui/icons-material/Delete';
Expand Down
2 changes: 1 addition & 1 deletion packages/projects/client/src/pages/Board/BoardProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export default function BoardProvider({ children }: BoardProviderProps) {
updatedOriginColumn: updatedColumnOrigin,
updatedTargetColumn: updatedColumnTarget,
};
}).catch((e) => {
}).catch(() => {
setBoard(prev => ({
...prev, cards: {
...prev.cards,
Expand Down
3 changes: 0 additions & 3 deletions packages/projects/client/src/services/db/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ type CollectionWithData<F extends Field> = Omit<CollectionData<F>, 'filters' | '
type CollectionWithFilters<F extends Field> = Omit<CollectionData<F>, 'data' | 'pathData' | 'callback'>;
type CollectionWithOnlyPaths<F extends Field> = Omit<CollectionData<F>, 'data' | 'filters' | 'pathData' | 'callback'>;
type CollectionWithPathData<F extends Field, S extends F[keyof F]> = Omit<CollectionData<F, S>, 'filters' | 'callback'>;
type CollectionWithCallback<F extends Field, S extends F[keyof F]> = Omit<CollectionData<F, S>,
'data' | 'filters' | 'pathData'
>;

export default class DB {
constructor(private db: Firestore) { }
Expand Down

0 comments on commit fb2b637

Please sign in to comment.