Spaces:
Runtime error
Runtime error
JoFrost
commited on
Commit
•
f2fc100
1
Parent(s):
fe39225
banner
Browse files
src/lib/components/chat/ChatIntroduction.svelte
CHANGED
@@ -21,14 +21,12 @@
|
|
21 |
|
22 |
$: currentModelMetadata = findCurrentModel(models, settings.activeModel);
|
23 |
|
24 |
-
const announcementBanners = PUBLIC_ANNOUNCEMENT_BANNERS
|
25 |
-
? JSON.parse(PUBLIC_ANNOUNCEMENT_BANNERS)
|
26 |
: [];
|
27 |
|
28 |
const dispatch = createEventDispatcher<{ message: string }>();
|
29 |
|
30 |
-
console.log(PUBLIC_ANNOUNCEMENT_BANNERS)
|
31 |
-
|
32 |
$: title = env.PUBLIC_APP_NAME
|
33 |
</script>
|
34 |
|
|
|
21 |
|
22 |
$: currentModelMetadata = findCurrentModel(models, settings.activeModel);
|
23 |
|
24 |
+
const announcementBanners = env.PUBLIC_ANNOUNCEMENT_BANNERS
|
25 |
+
? JSON.parse(env.PUBLIC_ANNOUNCEMENT_BANNERS)
|
26 |
: [];
|
27 |
|
28 |
const dispatch = createEventDispatcher<{ message: string }>();
|
29 |
|
|
|
|
|
30 |
$: title = env.PUBLIC_APP_NAME
|
31 |
</script>
|
32 |
|