Commit 2349c94
committed
fix(web): add missing query parameter to autocomplete API URL
The OpenAlex autocomplete API URL was malformed with `?=` instead of `?q=`,
causing the autocomplete dropdown to never show suggestions. This fix adds
the required `q` query parameter name.
Before: https://api.openalex.org/autocomplete?=${query}
After: https://api.openalex.org/autocomplete?q=${query}1 parent c4e7375 commit 2349c94
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
129 | | - | |
| 129 | + | |
130 | 130 | | |
131 | 131 | | |
132 | 132 | | |
| |||
0 commit comments