mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
minor tweaks
This commit is contained in:
@@ -173,7 +173,7 @@ export function DeployChatButton() {
|
||||
<>
|
||||
<h2 className="text-xl font-semibold text-center mb-4">Deploy</h2>
|
||||
<div className="text-center mb-4">
|
||||
Deploy this chat's project to production.
|
||||
Deploy this chat's app to production.
|
||||
</div>
|
||||
|
||||
{deploySettings?.siteURL && (
|
||||
|
||||
@@ -183,8 +183,12 @@ export async function databaseUpdateChatTitle(id: string, title: string): Promis
|
||||
}
|
||||
|
||||
export async function databaseGetChatDeploySettings(id: string): Promise<DeploySettingsDatabase | undefined> {
|
||||
console.log('DatabaseGetChatDeploySettingsStart', id);
|
||||
|
||||
const { data, error } = await getSupabase().from('chats').select('deploy_settings').eq('id', id);
|
||||
|
||||
console.log('DatabaseGetChatDeploySettingsDone', id, data, error);
|
||||
|
||||
if (error) {
|
||||
throw error;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user