Skip to content

Commit ae06c25

Browse files
committed
🩹 fix: remove unused reference
1 parent ae1af08 commit ae06c25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: 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)