Skip to content

Commit f8d3a8a

Browse files
committed
Fix linter failure
1 parent a3bdb76 commit f8d3a8a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/snapshot.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,7 @@ export async function submitSnapshot(
189189
const result = response.data.result
190190
if (result === 'SUCCESS' || result === 'ACCEPTED') {
191191
core.notice(
192-
'Snapshot successfully created at ' +
193-
response.data.created_at.toString()
192+
`Snapshot successfully created at ${response.data.created_at.toString()}`
194193
)
195194
} else {
196195
core.error(

0 commit comments

Comments
 (0)