Skip to content

Commit

Permalink
label and console fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Florent Mariotti committed Dec 19, 2024
1 parent 694d761 commit 91218cb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions backend/src/main/resources/i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
"magneto.card.options.delete": "Supprimer",
"magneto.card.options.move": "Déplacer",
"magneto.comments": "Commentaires",
"magneto.add": "Ajouter",
"magneto.add.comment": "Ajouter un commentaire",
"magneto.add.comment.error": "Une erreur est survenue lors de l'ajout du commentaire.",
"magneto.update.comment.error": "Une erreur est survenue lors de la mise à jour du commentaire.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const BoardCreateMagnetBoardModal: FC<
onClick={() => handleSubmit()}
disabled={!inputValue.selectedBoardId}
>
{t("magneto.card.options.duplicate")}
{t("magneto.add")}
</Button>
</Box>
</Box>
Expand Down
4 changes: 0 additions & 4 deletions frontend/src/providers/MediaLibraryProvider/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,6 @@ export const MediaLibraryProvider: FC<MediaLibraryProviderProps> = ({
updateLibraryMedia();
}, [libraryMedia, workspaceElement]);

useEffect(() => {
console.log(selectedBoardData);
}, [selectedBoardData]);

const value = useMemo<MediaLibraryContextType>(
() => ({
workspaceElement,
Expand Down

0 comments on commit 91218cb

Please sign in to comment.