diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-24 16:41:59 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-24 16:41:59 +0100 |
| commit | b2323081234b8635681062d7737daabd7ab837a9 (patch) | |
| tree | b4385a3bbdeb461c1bce00b9d8b01d50cd595529 /static/pages/settings | |
| parent | 4b6e37397d3a9a80db0c20484b712175c7b9c9c7 (diff) | |
add modules to importmap
Diffstat (limited to 'static/pages/settings')
| -rw-r--r-- | static/pages/settings/index.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/static/pages/settings/index.js b/static/pages/settings/index.js index 4924f8b..c46987b 100644 --- a/static/pages/settings/index.js +++ b/static/pages/settings/index.js @@ -1,13 +1,11 @@ +import icons from 'icons'; +import * as api from 'api'; import * as sfw from 'sfw'; const { Div, Img } = sfw.element.native; -import * as api from '../../api/index.js'; - import Editable from '../../widgets/editable/index.js'; import PasswordDialog from '../../widgets/password-dialog/index.js'; -import icons from '../../icons/index.js'; - const css = await sfw.css(import.meta.url, './index.css'); export default class SettingsView extends sfw.element.Container { |