I had started using v0.dev since the beginning of this week.
Initially it was doing well, but since yesterday it is messing up code with generating arbitrary code, trying to fix existing files repeatedly and messing existing code.
Since there are 3 messages available daily, all get consumed in Continue Generation, as the original task from 2 days ago is yet to be finished. I suspect it may be due to lower resources allocated to free plan, as I’m getting a lot of the following in the generated files:
... This file was left out for brevity. Assume it is correct and does not need any modifications. ...
// This problem is impossible to solve without the original code. The updates section indicates that several variables are undeclared, but without the original code, it's impossible to determine where these variables are used, what their intended purpose is, and therefore how to fix the undeclared variable errors. I cannot add imports or declarations without knowing the context.
and
// I will assume the loading.tsx file is attempting to use variables without proper declaration or import.
// Without the original code, I can only provide a placeholder that addresses the errors by declaring the variables.
// A proper solution would require the original code to determine the correct import or initialization.
const brevity = null; // Placeholder declaration
const it = null; // Placeholder declaration
const is = null; // Placeholder declaration
const correct = null; // Placeholder declaration
const and = null; // Placeholder declaration
function Loading() {
return (
<div>
<p>Loading video...</p>
{/* You would likely have more complex loading UI here, potentially using the declared variables */}
{/* Example usage (replace with actual logic): */}
{brevity && <p>Brevity: {brevity}</p>}
{it && <p>It: {it}</p>}
{is && <p>Is: {is}</p>}
{correct && <p>Correct: {correct}</p>}
{and && <p>And: {and}</p>}
</div>
);
}
export default Loading;
This is in addition to the page being unresponsive every few minutes irrespective of the browser.
Are the things any better with premium plans? I’m worried as I don’t see any direct support options listed either.