-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(ui): Zoom out 10% * fix(ui): Update colors to match brand kit * chore(honcho): upgrade honcho * chore(pnpm): update lock * Adds unstable cache fetching for user subscription prior to chat inference. * Fix prompt. * Fix build. * Changes requested from pull request. * Refactor chatAccess object assignment. * Refactor chat route. * Adds util for creation unstable cache. * Uses new cache util and adds getOrCreateSubscription check to new method. * Refactor Chat component: enable router import, streamline error handling, and improve default message logic. Simplified response handling for honcho content retrieval. * Refactor subscription management from PR feedback. * Enhance chat access management and error handling. Updated Chat component to handle 402 status responses, refactored subscription checks. * Cleanup fetchStream invocations. * Cleanup Chat UI code. * Rename sidebar prop for app access. * Fix banner height. * Fix reaction button backgrounds. * Tweak banner height for mobile display. * Fix sweetalert buttons not rendering. * Revert overflow. * Fix header icon, make departure font accessible globally. * Fix classnames. * Fix dark/light mode icon state. --------- Co-authored-by: Vineeth Voruganti <[email protected]>
- Loading branch information
1 parent
793f60d
commit 09780e7
Showing
10 changed files
with
41 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import localFont from 'next/font/local'; | ||
|
||
export const departureMono = localFont({ | ||
src: '../fonts/DepartureMono-Regular.woff2', | ||
}); |