Skip to content

Commit

Permalink
fix: remove markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Englund committed Aug 21, 2023
1 parent c7d39af commit ee3494f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kontan-server/src/blocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,9 +411,9 @@ export const homeScreen = ({
case 'INBOUND':
return ':white_check_mark:' + getStatusMessage(userId, weekday);
case 'OUTBOUND':
return '_Checked out_ :house_with_garden:';
return 'Checked out :house_with_garden:';
default:
return '_Not checked in yet_' + getStatusMessage(userId, weekday);
return 'Not checked in yet' + getStatusMessage(userId, weekday);
}
};

Expand Down

0 comments on commit ee3494f

Please sign in to comment.