Ochir Darmaev
Ochir Darmaev
> Still an issue in 2023. Trick was to physically go into api gateway and detach the authorizer from the route rather than doing some kind of redeployment (atleast in...
I have a similar issue ```package.json "devDependencies": { "sst": "^3.17.0" } ``` ```sst.config.ts /// export default $config({ async app(input) { return { name: "speak-practice-loop", home: "aws", }; }, async run()...
> I have a similar issue > > "devDependencies": { > "sst": "^3.17.0" > } > /// > > export default $config({ > async app(input) { > return { >...
faced with the same issue: swagger editor url parameter doesn't not load spec from URL
here is solution based on https://github.com/camaraproject/DeviceLocation/pull/327 update subdomain from `editor` to `editor-next` old https://editor.swagger.io/?url=https://raw.githubusercontent.com/testimio/public-openapi/main/api.yaml new https://editor-next.swagger.io/?url=https://raw.githubusercontent.com/testimio/public-openapi/main/api.yaml
restarting the terminal had no effect resetting the repository with git clean -f -d -x and reinstalling the dependicies had no effect restarting the computer had an effect. The tunnel...
> restarting the terminal had no effect resetting the repository with git clean -f -d -x and reinstalling the dependicies had no effect > > restarting the computer had an...
that could help ```ModeToggle.tsx import { HiOutlineMoon, HiOutlineSun } from "solid-icons/hi"; import { Show } from "solid-js"; import { Button } from "./button"; import { useTheme } from "./theme/theme-provider-context"; const...