function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Arun ParmarArun Parmar 

I am using force:editRecord, after saving record, record is saved but page is not redirecting to record

var editRecordEvent = $A.get("e.force:editRecord");
                            editRecordEvent.setParams({
                                "recordId": conRecord.Id,
                                "nooverride":"1"
                            });
                            editRecordEvent.fire();

Using this my record is saved but page stucked on blank screen, i want to redirect it to record detail page.
please help on this.