Skip to content

Commit

Permalink
Merge pull request #435 from AdamWill/console-not-warning
Browse files Browse the repository at this point in the history
storage: use `console.warn` not `console.warning` to fix crash
  • Loading branch information
KKoukiou authored Sep 10, 2024
2 parents 77c106b + 3962047 commit 334dcc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/storage-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const getDevicesAction = () => {
partName: partName.trim(),
};
} catch (e) {
console.warning("Failed to get partition label", e);
console.warn("Failed to get partition label", e);
devData.misc = {
fsLabel: "",
partName: "",
Expand Down

0 comments on commit 334dcc4

Please sign in to comment.