Skip to content

Commit

Permalink
fix chat button width
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilsnayak committed May 11, 2024
1 parent 82c7a57 commit 070f091
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 1 addition & 5 deletions app/bot/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,7 @@ export function Chat() {
onChange={handleInputChange}
disabled={isLoading}
/>
<Button
disabled={isLoading}
size='sm'
className='w-[10%] shrink-0 text-center'
>
<Button disabled={isLoading} size='sm'>
{isLoading ? <LoadingSpinner /> : 'Ask Zoro'}
</Button>
</form>
Expand Down
6 changes: 6 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ const nextConfig = {
return config;
},

logging: {
fetches: {
fullUrl: true,
},
},

experimental: {
turbo: {
rules: {
Expand Down

0 comments on commit 070f091

Please sign in to comment.