Skip to content

Commit 169312f

Browse files
committed
fix(slack): correct views.open API URL in feedback routes
1 parent 3b2100f commit 169312f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/api/routes/feedback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ async def slack_interactions(request: Request):
136136
async with httpx.AsyncClient() as client:
137137
# ВИПРАВЛЕНО URL
138138
res = await client.post(
139-
"[https://slack.com/api/views.open](https://slack.com/api/views.open)",
139+
"https://slack.com/api/views.open",
140140
headers=headers,
141141
json={"trigger_id": trigger_id, "view": modal_view},
142142
)

0 commit comments

Comments
 (0)