Skip to content

Commit

Permalink
Revert add claude org setting
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncButNeverAwaits committed Apr 2, 2024
1 parent 5a91f6e commit 957cc01
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/components/BotSettings/ClaudeAIBotSettings.vue
Original file line number Diff line number Diff line change
@@ -1,38 +1,20 @@
<template>
<login-setting :bot="bot"></login-setting>
<CommonBotSettings
:settings="settings"
:brand-id="brandId"
mutation-type="setClaudeAi"
></CommonBotSettings>
</template>

<script>
import Bot from "@/bots/ClaudeAIBot";
import CommonBotSettings from "@/components/BotSettings/CommonBotSettings.vue";
import LoginSetting from "@/components/BotSettings/LoginSetting.vue";
import { mapMutations } from "vuex";
import { Type } from "./settings.const";
const { ipcRenderer } = window.require("electron");
const settings = [
{
type: Type.Text,
name: "org",
title: "claudeAi.org",
},
];
export default {
components: {
LoginSetting,
CommonBotSettings,
},
data() {
return {
bot: Bot.getInstance(),
settings: settings,
brandId: Bot._brandId,
};
},
mounted() {
Expand Down

0 comments on commit 957cc01

Please sign in to comment.