Skip to content

Commit

Permalink
chore: use ||
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Jun 24, 2024
1 parent d816ee2 commit 203c3a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/api/src/routes/frames/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ export const post: Handler = async (req, res) => {
const request = {
actionResponse: '',
buttonIndex,
inputText: inputText ?? '',
inputText: inputText || '',
profileId: id,
pubId,
specVersion: '1.0.0',
state: state ?? '',
state: state || '',
url: postUrl
};

Expand Down

1 comment on commit 203c3a7

@vercel
Copy link

@vercel vercel bot commented on 203c3a7 Jun 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./apps/web

web-git-main-heyxyz.vercel.app
web-heyxyz.vercel.app
hey.xyz
heyxyz.vercel.app

Please sign in to comment.