Skip to content

Commit 4593c78

Browse files
committed
post rebase fix
1 parent f3404be commit 4593c78

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

backend/alembic/versions/aeda5f2df4f6_add_pinned_assistants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""add pinned assistants
22
33
Revision ID: aeda5f2df4f6
4-
Revises: 369644546676
4+
Revises: 0f7ff6d75b57
55
Create Date: 2025-01-09 16:04:10.770636
66
77
"""
@@ -11,7 +11,7 @@
1111

1212
# revision identifiers, used by Alembic.
1313
revision = "aeda5f2df4f6"
14-
down_revision = "369644546676"
14+
down_revision = "0f7ff6d75b57"
1515
branch_labels = None
1616
depends_on = None
1717

backend/onyx/db/input_prompt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def fetch_input_prompts_by_user(
222222

223223
# If no user is logged in, get all prompts (public and private)
224224
if user_id is None and AUTH_TYPE == AuthType.DISABLED:
225-
query = query.where(True) # This will select all prompts
225+
query = query.where(True) # type: ignore
226226

227227
# If no user is logged in but we want to include public prompts
228228
elif include_public:

backend/onyx/prompts/starter_messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
def format_persona_starter_message_prompt(
3939
name: str, description: str, instructions: str, category: str | None = None
40-
):
40+
) -> str:
4141
category_prompt = f"**Category**: {category}" if category else ""
4242
return PERSONA_STARTER_MESSAGE_CREATION_PROMPT.format(
4343
category_prompt=category_prompt,

web/src/components/Dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export function SearchMultiSelectDropdown({
193193
}}
194194
>
195195
<PlusIcon className="w-4 h-4 mr-2" />
196-
Create label "{searchTerm}"
196+
Create label &quot;{searchTerm}&quot;
197197
</button>
198198
</>
199199
)}

0 commit comments

Comments
 (0)