Skip to content

Commit 6244834

Browse files
committed
f-string fix
1 parent 909566d commit 6244834

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pcweb/components/docpage/navbar/typesense.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def search_result(tags: list, value: dict):
223223
search_breadcrumb(tags),
224224
class_name="p-2 w-full flex flex-col gap-y-2 justify-start items-start align-start",
225225
),
226-
href=f"/{value["url"].to(str)}",
226+
href=f"/{value['url'].to(str)}",
227227
class_name="!text-inherit no-underline hover:!text-inherit",
228228
_hover={"bg": rx.color("gray", 2)},
229229
)
@@ -257,7 +257,7 @@ def search_result_blog(value: dict):
257257
),
258258
class_name="p-2 w-full flex flex-col gap-y-1 justify-start items-start align-start",
259259
),
260-
href=f"{value["url"].to(str)}",
260+
href=f"{value['url'].to(str)}",
261261
class_name="!text-inherit no-underline hover:!text-inherit",
262262
_hover={"bg": rx.color("gray", 2)},
263263
)

0 commit comments

Comments
 (0)