messages.push(e?.detail)"
- @quick-notification-delete="messages = []">
+ ])'
+>
diff --git a/docs/howto/statics.md b/docs/howto/statics.md
index 8392ef0f..230f04af 100644
--- a/docs/howto/statics.md
+++ b/docs/howto/statics.md
@@ -35,8 +35,8 @@ les fichiers sont à mettre dans un dossier `static/bundled` de l'application à
Pour accéder au fichier, il faut utiliser `static` comme pour le reste mais en ajouter `bundled/` comme prefix.
```jinja
- {# Example pour ajouter sith/core/bundled/alpine-index.js #}
-
+ {# Example pour ajouter sith/core/bundled/alpine-index.ts #}
+
```
diff --git a/staticfiles/processors.py b/staticfiles/processors.py
index bc1ceeb1..e118fbea 100644
--- a/staticfiles/processors.py
+++ b/staticfiles/processors.py
@@ -32,7 +32,7 @@ class JsBundlerManifestEntry:
# because that's what the user types when importing statics and that's what django gives us
# This is really similar to what we are doing in the bundler, it uses a similar algorithm
# Example:
- # core/static/bundled/alpine-index.js -> bundled/alpine-index.js
+ # core/static/bundled/alpine-index.ts -> bundled/alpine-index.ts
# core/static/bundled/components/include-index.ts -> core/static/bundled/components/include-index.ts
def get_relative_src_name(name: str) -> str:
original_path = Path(name)