Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaroldi committed Jul 11, 2024
1 parent f21e926 commit 11367de
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import type { ImageAndParagraph } from '../types/ImageAndParagraph';
*/
export function getSelectedImage(model: ReadonlyContentModelDocument): ImageAndParagraph | null {
const selections = getSelectedSegmentsAndParagraphs(model, false);
console.log(selections);
if (selections.length == 1 && selections[0][0].segmentType == 'Image' && selections[0][1]) {
return {
image: selections[0][0],
Expand Down

0 comments on commit 11367de

Please sign in to comment.