🐛 fix(store.py): remove unnecessary raise statement to prevent raising a 403 status code unnecessarily
This commit is contained in:
parent
e63cf48410
commit
b3e4d42817
1 changed files with 0 additions and 1 deletions
|
|
@ -136,7 +136,6 @@ async def get_components(
|
|||
raise HTTPException(status_code=401, detail=str(exc))
|
||||
elif "filter by likes" in str(exc) or "filter your components" in str(exc):
|
||||
raise HTTPException(status_code=400, detail=str(exc))
|
||||
raise HTTPException(status_code=403, detail=str(exc))
|
||||
|
||||
raise HTTPException(status_code=500, detail=str(exc))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue