summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-09-07 00:30:02 -0700
committerNate Sesti <sestinj@gmail.com>2023-09-07 00:30:02 -0700
commit7daf1e4ae8c5de8732d49233e4efcaf25bec91d7 (patch)
tree62d65117ac6ce22fb6084bff37cffc4324de1b22 /extension
parentbc8a559563f4aab88fa6d7d8ecd3109656be9f30 (diff)
downloadsncontinue-7daf1e4ae8c5de8732d49233e4efcaf25bec91d7.tar.gz
sncontinue-7daf1e4ae8c5de8732d49233e4efcaf25bec91d7.tar.bz2
sncontinue-7daf1e4ae8c5de8732d49233e4efcaf25bec91d7.zip
refactor: :art: template_messages for GGML
Diffstat (limited to 'extension')
-rw-r--r--extension/react-app/src/components/Layout.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/extension/react-app/src/components/Layout.tsx b/extension/react-app/src/components/Layout.tsx
index 065b77c6..17100c7f 100644
--- a/extension/react-app/src/components/Layout.tsx
+++ b/extension/react-app/src/components/Layout.tsx
@@ -145,8 +145,8 @@ const Layout = () => {
<GridDiv>
<Outlet />
<Footer>
- {(localStorage.getItem("hideFeature") === "true" && false) || (
- <div className="mr-auto flex gap-2 items-center">
+ <div className="mr-auto flex gap-2 items-center">
+ {localStorage.getItem("hideFeature") === "true" || (
<SparklesIcon
className="cursor-pointer"
onClick={() => {
@@ -172,10 +172,10 @@ const Layout = () => {
height="1.3em"
color="yellow"
/>
+ )}
- <ModelSelect />
- </div>
- )}
+ <ModelSelect />
+ </div>
<HeaderButtonWithText
onClick={() => {
client?.loadSession(undefined);