Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update prettier to latest release #3281

Merged
merged 1 commit into from
Jan 31, 2024
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
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"lodash.difference": "^4.5.0",
"lodash.omit": "^4.5.0",
"msw": "^2.1.2",
"prettier": "^3.0.3",
"prettier": "^3.2.4",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "npm:sass-embedded@^1.66.1",
"storybook": "^7.6.11",
Expand Down
7 changes: 3 additions & 4 deletions src/containers/App/App.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2023 The Tekton Authors
Copyright 2019-2024 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Expand Down Expand Up @@ -124,9 +124,8 @@ async function loadMessages(lang) {
// hot reloading in dev mode
return;
}
loadedMessages[
messageId
] = `${startBoundary}${loadedMessages[messageId]}${endBoundary}`;
loadedMessages[messageId] =
`${startBoundary}${loadedMessages[messageId]}${endBoundary}`;
});
}

Expand Down
Loading