fix: Remove unnecessary f-string in testimonials formatting

This commit is contained in:
Paul Gauthier (aider) 2025-03-28 15:49:14 -10:00
parent ef4c40c692
commit 73c46e8e24

View file

@ -455,7 +455,7 @@ def get_testimonials_js():
js_array = "const testimonials = [\n"
for i, t in enumerate(testimonials):
js_array += f" {{\n"
js_array += " {\n"
js_array += f" text: \"{t['text']}\",\n"
js_array += f" author: \"{t['author']}\",\n"
js_array += f" link: \"{t['link']}\"\n"