Skip to content

Commit 886edf0

Browse files
Fix, forgot a { in the ClassificationPanle.tsx file
1 parent 27bbf40 commit 886edf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ClassificationPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const ClassificationPanel = () => {
108108
confidence = 0.80;
109109
}
110110
// Business classification
111-
else if (contentLower.includes('proposal' || contentLower.includes('business plan')) {
111+
else if (contentLower.includes('proposal') || contentLower.includes('business plan')) {
112112
category = "Business";
113113
subcategory = "Proposals";
114114
confidence = 0.85;

0 commit comments

Comments
 (0)