Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 26c9ab2

Browse files
committedJan 15, 2025
🩹 fix: remove unused reference
1 parent 2d9a2dc commit 26c9ab2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/popups/conventional_commit.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ enum MoreInfoCommit {
152152

153153
impl MoreInfoCommit {
154154
const fn strings(
155-
&self,
155+
self,
156156
) -> (&'static str, &'static str, &'static str) {
157-
match *self {
157+
match self {
158158
Self::UI => ("💄", "UI", "UI related"),
159159
Self::CodeStyle => ("🎨", "style", "Style of the code"),
160160
Self::Performance => ("⚡️", "", "Performance"),

0 commit comments

Comments
 (0)
Please sign in to comment.