diff options
| author | AAGaming <aagaming@riseup.net> | 2024-05-12 15:47:08 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-05-12 15:47:08 -0400 |
| commit | 0b1c0694489b1b74b21c10ad29b59912edeb5e01 (patch) | |
| tree | 659ef5ba75e3678c60bbf27c8a854e00e0bf74b2 /frontend/src/index.ts | |
| parent | 43b940e216e6b654e689cf791d298d57215196d4 (diff) | |
| download | decky-loader-0b1c0694489b1b74b21c10ad29b59912edeb5e01.tar.gz decky-loader-0b1c0694489b1b74b21c10ad29b59912edeb5e01.zip | |
port to @decky/ui
TODO: update package.json to match once @decky/ui is on NPM
Diffstat (limited to 'frontend/src/index.ts')
| -rw-r--r-- | frontend/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/index.ts b/frontend/src/index.ts index 91324b4f..a108df66 100644 --- a/frontend/src/index.ts +++ b/frontend/src/index.ts @@ -1,7 +1,7 @@ // Sets up DFL, then loads start.ts which starts up the loader (async () => { - console.debug('Setting up decky-frontend-lib...'); - window.DFL = await import('decky-frontend-lib'); + console.debug('Setting up @decky/ui...'); + window.DFL = await import('@decky/ui'); console.debug('Authenticating with Decky backend...'); window.deckyAuthToken = await fetch('http://127.0.0.1:1337/auth/token').then((r) => r.text()); console.debug('Connecting to Decky backend...'); |
