Open vineethreddy899 opened 1 week ago
Not able to change programming language once extension is loaded. The dropdown to select programming language is not working.
Hey any idea how to get API Key since for me it says The model gpt-4o does not exist or you do not have access to it.
Not able to change programming language once extension is loaded. The dropdown to select programming language is not working.
@vineethreddy899 can add a video if possible. This should not be the case as I have seen the code of the content.tsx and there is nothing we are doing to language button.
Yes, This issue is coming that language dropdown is not working.
/assign to me @piyushgarg-dev
@Owaiseimdad Done
@vineethreddy899 and @piyushgarg-dev let me know what am I doing wrong. Because I cannot reproduce the issue.
https://github.com/user-attachments/assets/e77f6fd5-04c2-4483-ac68-2390820fc88b
@Owaiseimdad are u running build output or are you in dev mode?
also resolve the configuration issue that occurs after the CSS for the next pages loads.
and this issue only happens in the dev environment, not in the prod build.
got it @ruru-m07 will do that. It was actually prod mode.
okay got the issue, due to tailwind css loaded in index.css. specific "@tailwind utilities;" is causing the problem. It is inferring with the application tailwind.
Working in the resolution.
cc: @piyushgarg-dev @ruru-m07
@ruru-m07 need your help here, stuck with problem for a while now.
the style injected into the head is causing the problem. not just the drop but so many selector.
@piyushgarg-dev the problem is not just with one drop down but the entire applications css. you can refer to the video
if u r super lazy TL;DR
/src/index.css
, I manually build Tailwind CSS. For instance, I use npx tailwindcss -i ./src/index.css -o ./out.css
, where -i
specifies the input CSS file, and -o
specifies the output location.out.css
file in project:- and then I comment each and every Selector and see if the output changes.
and guess what? I want that single selector that created this issue, it's .hidden
. If I comment on it then I see that issue resolved
it means the selector .hidden
makes this issue happen.
but there is no why to tell tailwind that don't make .hidden class also we can't overwrite it.
so that I write some scripts to handle this. this will run after npx tailwindcss -i ./src/index.css -o ./out.css --watch
runs
Here is a video proof. ( working selector )
https://github.com/user-attachments/assets/142840d4-9756-4c43-8218-9439740ade8b
here is some codebase walkthrough
https://github.com/user-attachments/assets/824bc92a-2d9f-4da6-b99b-9b135fc173ca
mentions: @Owaiseimdad @piyushgarg-dev @vineethreddy899
Not able to change programming language once extension is loaded. The dropdown to select programming language is not working.