Skip to content

Commit

Permalink
Tweaking spaces (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
aorumbayev authored Dec 6, 2022
1 parent c121713 commit a8cc6be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/utils/transactions/getAlgoRealmHistory.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const lineSeparator = `================`;

export const getAlgoRealmHistory = (algorealmCalls: any[]) => {
const claimsHistory = [];

Expand Down Expand Up @@ -33,5 +35,5 @@ export const getAlgoRealmHistory = (algorealmCalls: any[]) => {
}
}

return claimsHistory.join(`\n`);
return claimsHistory.join(lineSeparator);
};

1 comment on commit a8cc6be

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for algorealm ready!

✅ Preview
https://algorealm-59gn58vca-algoworldexplorer.vercel.app

Built with commit a8cc6be.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.