Skip to content

Commit 0fc4777

Browse files
committed
Fixed formatting
1 parent 06d3838 commit 0fc4777

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web-ui/src/components/kudos/PublicKudosCard.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const KudosCard = ({ kudos }) => {
124124
return names;
125125
};
126126

127-
const linkSlackUrls = (textLine) => {
127+
const linkSlackUrls = textLine => {
128128
// Regex to find <url> or <url|text>
129129
// Group 1: URL
130130
// Group 2: Optional Link Text (undefined if not present)
@@ -168,7 +168,7 @@ const KudosCard = ({ kudos }) => {
168168

169169
// If no links were found at all, return the original line in an array
170170
if (components.length === 0) {
171-
return [textLine];
171+
return [textLine];
172172
}
173173

174174
return components;

0 commit comments

Comments
 (0)