Skip to content

Commit

Permalink
fix: adjust Edge Functions deploy message (#21)
Browse files Browse the repository at this point in the history
* fix: adjust Edge Functions deploy message

* refactor: reinstate internal count
  • Loading branch information
eduardoboucas authored Apr 18, 2022
1 parent b752067 commit 1247132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/deploy/deploy-site.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const deploySite = async (
const stats = buildStatsString([
filesCount > 0 && `${filesCount} files`,
functionsCount > 0 && `${functionsCount} functions`,
edgeFunctionsCount > 0 && `${edgeFunctionsCount} Edge Functions`,
edgeFunctionsCount > 0 && 'edge functions',
])

statusCb({
Expand Down

0 comments on commit 1247132

Please sign in to comment.