Skip to content

Commit

Permalink
Updates to text
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreywolf committed Sep 27, 2024
1 parent 62340ab commit 8dd51e2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ const EditDiagramDialog = () => {
);
handleDialogClose();
} catch (error) {
console.error('Error updating image with metadata', error);
showAlertDialog('Error updating image, please try again');
console.error('Error updating diagram', error);
showAlertDialog('Error updating diagram, please try again');
}
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ const SelectDiagramDialog = () => {
);
handleDialogClose();
} catch (error) {
showAlertDialog('Error inserting image, please try again');
console.error('Error inserting image with metadata', error);
showAlertDialog('Error inserting diagram, please try again');
console.error('Error inserting diagram with metadata', error);
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/client/sidebar/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ const Sidebar = () => {
<Tabs
value={tab}
onChange={(_, newValue) => handleTabSwitch(newValue)}
aria-label="basic tabs example"
aria-label="recent diagrams and diagrams in current document"
>
<Tab
label="Recent diagrams"
Expand Down

0 comments on commit 8dd51e2

Please sign in to comment.