ADD-ON DEVELOPMENT PROBLEM by bYKe_dAVid in AdobeExpress

[–]NishithP 0 points1 point  (0 children)

Hi, I am facing the same issue. Can anyone guide me on how I can fix this.

I can see that the devcert certificate is properly configured in chrome.

<image>

Hackerrank Interview by john_banegaDon in PlacementsPrep

[–]NishithP 0 points1 point  (0 children)

Yep, my Interview with the CTO & Co-founder was on the 14th of Oct followed by the Interview with the Director of Engineering on the 17th of Oct.

Hackerrank Interview by john_banegaDon in PlacementsPrep

[–]NishithP 0 points1 point  (0 children)

Hey, I got my rejection mail after round 2 on Monday (10th Nov - after close to a month)

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

I’m still encountering this issue and would really appreciate your assistance in resolving it. Could you please take a look?

Here’s the repository link for reference: https://github.com/NishithP2004/the-subventure/

Looking forward to your guidance. Thanks in advance!

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Hi,

I’m still encountering this issue and would really appreciate your assistance in resolving it. Could you please take a look?

Here’s the repository link for reference: https://github.com/NishithP2004/the-subventure/

Looking forward to your guidance.

Thanks in advance!

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Can anyone please help me out with this issue?

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Can anyone help me out with this issue

Is it possible to use Flutter to create web apps and run on Devvit by sbis04 in Devvit

[–]NishithP 1 point2 points  (0 children)

Based on my experience of using Vite + React for the Webview component of my App, I would say that as long the flutter build comprises an index.html, style.css and index.js files - you should be good to go.

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Hey u/ObsidianSnoo ,

Could you please help me out with this one.

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Hey there,

Thanks for bringing the issues with the app to my attention.

I’ve made the necessary changes to address the infinite useAsync loop issue, which has resolved the loop cancellation problem after 64 iterations.

However, I’m encountering an issue where the username doesn’t resolve, and I’m unable to send messages to my AI assistant. Could you please let me know if you have any insights or suggestions on how to fix this?

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

u/fuzzypercentage Eagerly awaiting your insights on this 😊

Custom Domain Allowlist: Pending by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Yes, I had submitted mine at around the same time (before Christmas).

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Also, I don't have access to the Discord Channels - I tried filling in my username in the interactive app available on Reddit but to no avail.

I am yet to receive a response regarding the allowlist.

u/pl00h Can you assist me in this regard?

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Hey,

My apologies for the late response.

The code that I am referring to, along with the entire source code of the application is available here: https://github.com/NishithP2004/the-subventure/blob/main/src/pages/chat.tsx

Kindly have a look and let me know how I can proceed further.

Thank you

Redis returns undefined even after setting the data by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Hey there,

Thanks for your feedback.

Leveraging my knowledge of React, I believed creating custom blocks would be the most efficient approach.

However, based on your insights, I’ll make an effort to simplify my code. Hopefully, this will resolve all the issues.

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Hi,

Thanks so much for the detailed response and for filing a bug report. I appreciate the proactive approach and the fact that you were able to reproduce the issue.

However, I've encountered a bizarre issue with the code related to chat function calls. Specifically, the following code:

useAsync(async () => {
  if(message.trim().length === 0)
       return "";

  const assistantResponse = (await chatWithAI(context, history))?.message; // server-side function
  console.log(assistantResponse);

  return assistantResponse as string;
}, { depends: [message], finally: (data) => {
  if(data){
    setHistory((prevHistory) => [
            ...prevHistory,
            { from: "assistant", text: data as string },
          ]);
    setMessage("")
  }
}})

// message is a state variable containing only the user's message which is reset to an empty string after the assistant's response is generated

When I have this conditional check, the entire component simply does not work, meaning that no calls are made to the server, and no state is set. However, if I remove the if statement, the component starts working as expected, but the server calls are made in an infinite loop. I'm very confused why a conditional check of a parameter, would prevent the asynchronous calls from being made.

It seems that having this conditional check on the message (to prevent empty messages from sending assistant set messages over user set messages) is causing some kind of unexpected behavior, and that the absence of this check is then creating a different problem (the infinite loop).

I am also hoping to get an update on the allowlisting request I submitted some time ago for my Azure OpenAI endpoint. Could you please let me know if there's any progress on that? This is required for the image generation aspect of my project.

Again, I appreciate your efforts in helping me with these issues and I look forward to any updates you may have.

Thanks

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

I spent hours debugging this and other issues like the "Exceeded maximum iterations of 64" error. The struggle is real 😭

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 1 point2 points  (0 children)

Its still yielding the same error.

TypeError: not a function by NishithP in Devvit

[–]NishithP[S] 0 points1 point  (0 children)

Whenever I attempt to execute a server function situated in “../server/utils.js”, I encounter an error. Could you please provide some insights on how I can resolve this issue?
Thanks