Skip to content

Commit bf46eb2

Browse files
committed
Fix emoji display for 'eyes' reaction in the reaction script
1 parent 3a6a092 commit bf46eb2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

gh-react

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ REACTION="😊"
2020

2121
# Function to print colored output
2222
print_status() {
23-
echo -e "${BLUE}${CHECK}${NC} $1"
23+
echo -e "${BLUE}$1${NC}"
2424
}
2525

2626
print_error() {
27-
echo -e "${RED}${CROSS}${NC} $1"
27+
echo -e "${RED}$1${NC}"
2828
}
2929

3030
print_info() {
31-
echo -e "${CYAN}${EYES}${NC} $1"
31+
echo -e "${CYAN}$1${NC}"
3232
}
3333

3434
print_success() {
35-
echo -e "${GREEN}${ROCKET}${NC} $1"
35+
echo -e "${GREEN}$1${NC}"
3636
}
3737

3838
# Check if PR number is provided
@@ -248,7 +248,7 @@ if [ $? -eq 0 ]; then
248248
"heart") echo -e "${RED}❤️ Added heart!${NC}" ;;
249249
"hooray") echo -e "${PURPLE}🎉 Added hooray!${NC}" ;;
250250
"rocket") echo -e "${BLUE}🚀 Added rocket!${NC}" ;;
251-
"eyes") echo -e "${CYAN} Added eyes!${NC}" ;;
251+
"eyes") echo -e "${CYAN}👀 Added eyes!${NC}" ;;
252252
esac
253253
else
254254
print_error "Failed to add reaction"

0 commit comments

Comments
 (0)