Upgraded to summer GA and this line now prevents a skuid page from being shown.

Part of the issue here is that you’re doing field updates inside of a field renderer which I believe is not recommended. One way that I often get around this, is setting values in a page load snippet. I would try setting your default value on the page load by adding an “inline” snippet which updates the row to a blank string.

(function(skuid){&nbsp; &nbsp;var $ = skuid.$;<br>&nbsp; &nbsp;$(function(){<br>&nbsp; &nbsp; &nbsp; &nbsp;var model = skuid.$M('YourModelName');<br>&nbsp; &nbsp; &nbsp; &nbsp;var row = model.getFirstRow();<br>&nbsp; &nbsp; &nbsp; &nbsp;model.updateRow(row,'Your_Field__c','');<br>&nbsp; &nbsp;});<br>})(skuid);