Lokale Dateien implementiert
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
// src/lib/init.ts
|
||||
import { isBluetoothSupported, isSerialSupported, isInitializing } from './store';
|
||||
import { refreshLocal } from './sync';
|
||||
|
||||
export function getBrowserName(): string {
|
||||
const ua = navigator.userAgent;
|
||||
@@ -20,5 +21,8 @@ export function performHardwareCheck() {
|
||||
|
||||
isBluetoothSupported.set(hasBT);
|
||||
isSerialSupported.set(hasSerial);
|
||||
isInitializing.set(false);
|
||||
|
||||
refreshLocal().then(() => {
|
||||
isInitializing.set(false);
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user