We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dd2a2e commit 1848e79Copy full SHA for 1848e79
src/js/utils/checkCompatibility.js
@@ -88,15 +88,15 @@ export function checkCompatibility() {
88
}
89
90
if (!hasBluetoothSupport) {
91
- errorMessage += "<br/>- Web Bluetooth API support is disabled.";
+ errorMessage += "<br/>- Bluetooth API support is disabled.";
92
93
94
if (!hasSerialSupport) {
95
errorMessage += "<br/>- Serial API support is disabled.";
96
97
98
if (!hasUsbSupport) {
99
- errorMessage += "<br/>- Web USB API support is disabled.";
+ errorMessage += "<br/>- USB API support is disabled.";
100
101
102
const newDiv = document.createElement("div");
0 commit comments