Skip to content

Commit

Permalink
removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavobascope committed Oct 21, 2024
1 parent a1be052 commit 9359f45
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions resources/js/admin/devlink/components/SharedAssets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ const addSharedAsset = async (type) => {
config: type.class,
name: type.name,
});
console.log('Asset added:', response.data);
load();
} catch (error) {
console.error('Error adding asset:', error);
Expand All @@ -42,7 +41,6 @@ const addSharedAsset = async (type) => {
const removeSharedAsset = async (assetId) => {
try {
const response = await ProcessMaker.apiClient.delete(`/devlink/remove-shared-asset/${assetId}`);
console.log('Asset removed:', response.data);
load();
} catch (error) {
console.error('Error removing asset:', error);
Expand Down

0 comments on commit 9359f45

Please sign in to comment.