Skip to content

Commit

Permalink
Pre-release 0.31.107
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 10, 2025
1 parent 37407e4 commit 717bc4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Core/Sources/ConversationTab/FilePicker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ public struct FilePicker: View {
.padding(.vertical, 4)
}
}
.id(filteredFiles.hashValue)
}
.frame(maxHeight: 200)
.padding(.horizontal, 4)
Expand Down
1 change: 1 addition & 0 deletions ExtensionService/AppDelegate+Menu.swift
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ extension AppDelegate {
)

statusBarMenu.addItem(accountItem)
statusBarMenu.addItem(.separator())
statusBarMenu.addItem(authStatusItem)
statusBarMenu.addItem(upSellItem)
statusBarMenu.addItem(.separator())
Expand Down
2 changes: 1 addition & 1 deletion ExtensionService/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ func getCLSMessageSummary(_ message: String) -> CLSMessage {
let summary: String
if message.contains("You've reached your monthly chat messages limit") {
summary = "Monthly Chat Limit Reached"
} else if message.contains("You've reached your monthly code completion limit") {
} else if message.contains("Completions limit reached") {
summary = "Monthly Completion Limit Reached"
} else {
summary = "CLS Error"
Expand Down

0 comments on commit 717bc4c

Please sign in to comment.