Skip to content

Commit

Permalink
chore: typo + unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanorosanelli committed Nov 19, 2024
1 parent f58c5e6 commit 520f4f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pages/chatbot-iframe/[uuid].vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
</template>

<script lang="ts" setup>
const config = useRuntimeConfig();
const store = useStatesStore();
// const config = useRuntimeConfig();
// const store = useStatesStore();
const { formatResponse, llmResponseFormat } = useResponseFormat();
interface DialogItem {
Expand Down
2 changes: 1 addition & 1 deletion server/api/brevia/collections.get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export default defineEventHandler(async (event) => {
let url = '/collections';
if (query.uuid) {
url += `/${query.uuid}`;
delete query.id;
delete query.uuid;
}
try {
const response: any = await $fetch(apiUrl(url), {
Expand Down

0 comments on commit 520f4f8

Please sign in to comment.