Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/super/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func failureDeployment(err error, contractPathNames map[string]string) string {
// handle cadence runtime errors
var deployErr *flowkit.ProjectDeploymentError
if errors.As(err, &deployErr) {
out.WriteString(output.ErrorEmoji() + " Error deploying your project. Runtime error encountered which means your code is incorrect, check details bellow. \n\n")
out.WriteString(output.ErrorEmoji() + " Error deploying your project. Runtime error encountered which means your code is incorrect, check details below. \n\n")

for name, err := range deployErr.Contracts() {
out.WriteString(output.Bold(fmt.Sprintf("%s Errors:\n", name)))
Expand Down
2 changes: 1 addition & 1 deletion internal/super/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ func (p *project) addContract(
}

existing, _ := p.state.Contracts().ByName(name)
if existing != nil { // make sure alises are persisted even if location changes
if existing != nil { // make sure aliases are persisted even if location changes
contract.Aliases = existing.Aliases
}

Expand Down
Loading