-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attempt upload to firebase #91
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found the reason for the outputData thing. Check the "createOutputData" function in input.js. You're returning
return {
outputData,
};
instead of
return outputData
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
works
…lso changed code to read new aggOutputs
401904e
to
0f17675
Compare
Issue
The current implementation was not uploading the results from an attempt to the database. This would mean after each attempt, all the attempt data was lost.
Related Issue: #89
Changes
Created a function that will does the following:
Other Notes