-
Notifications
You must be signed in to change notification settings - Fork 0
Enhance app store utilities and location handling #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -87,7 +87,7 @@ function getApps(credentials: CredentialDataWithTeamName[], filterOnCredentials? | |||||||||||||||||||||||||
| }; | ||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| const credential: (typeof appCredentials)[number] | null = appCredentials[0] || null; | ||||||||||||||||||||||||||
| const credential: (typeof appCredentials)[number] | null = appCredentials[0]; | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| reducedArray.push({ | ||||||||||||||||||||||||||
| ...appMeta, | ||||||||||||||||||||||||||
|
Comment on lines
87
to
93
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correctness: 🟠 [LangGraph v3] The assignment |
||||||||||||||||||||||||||
|
|
@@ -122,10 +122,10 @@ export function getAppType(name: string): string { | |||||||||||||||||||||||||
| const type = ALL_APPS_MAP[name as keyof typeof ALL_APPS_MAP].type; | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| if (type.endsWith("_calendar")) { | ||||||||||||||||||||||||||
| return "Calendar"; | ||||||||||||||||||||||||||
| return "calendar"; | ||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||
| if (type.endsWith("_payment")) { | ||||||||||||||||||||||||||
| return "Payment"; | ||||||||||||||||||||||||||
| return "payment"; | ||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||
| return "Unknown"; | ||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||
|
Comment on lines
122
to
131
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correctness: 🟠 [LangGraph v3] Change all return values in |
||||||||||||||||||||||||||
|
|
@@ -160,7 +160,7 @@ export function doesAppSupportTeamInstall({ | |||||||||||||||||||||||||
| return !appCategories.some( | ||||||||||||||||||||||||||
| (category) => | ||||||||||||||||||||||||||
| category === "calendar" || | ||||||||||||||||||||||||||
| (defaultVideoAppCategories.includes(category as AppCategories) && !concurrentMeetings) | ||||||||||||||||||||||||||
| (defaultVideoAppCategories.includes(category as AppCategories) && concurrentMeetings) | ||||||||||||||||||||||||||
| ); | ||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
|
Comment on lines
160
to
166
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correctness: 🟠 [LangGraph v3] The condition 📝 Committable Code Suggestion
Suggested change
|
||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correctness: 🟠 [LangGraph v3] Verify that changing 'category' from 'other' to 'conferencing' aligns with the intended logic, as it affects location categorization.