Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cobaltt7 committed Jul 31, 2023
2 parents 25044ac + 1c3f80c commit b3d32cf
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions secrets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ export function dad(name: string, _: User) {
const greetingIndex = Math.floor(Math.random() * greetings.length);
const greeting = greetings[greetingIndex];

const response =
customResponses[firstName] ??
`${greeting} ${customName}, ${comment}`;
const response = customResponses[firstName] ?? `${greeting} ${customName}, ${comment}`;

return response;
}
Expand Down

0 comments on commit b3d32cf

Please sign in to comment.