Skip to content

Commit

Permalink
style: resolve style guide violations
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarnsley authored and github-actions[bot] committed Jun 11, 2024
1 parent be6092e commit 1d9a747
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion resources/assets/js/crop-image.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,10 @@ const CropImage = (

Object.values(errors.getAll()).forEach((bags) => {
[...bags].forEach(({ value }) =>
Livewire.dispatch("toastMessage", {message: value, type: "danger"})
Livewire.dispatch("toastMessage", {
message: value,
type: "danger",
})
);
});
});
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/js/tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ const Tags = (
},
displayLivewireToast(message) {
if (typeof livewire !== "undefined") {
livewire.dispatch("toastMessage", {message, type: "warning"});
livewire.dispatch("toastMessage", { message, type: "warning" });
}
},
hideTooltip() {
Expand Down

0 comments on commit 1d9a747

Please sign in to comment.