Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
3f84ed9
fix(settings): fix long description on wordpress integration (#2195)
waleedlatif1 Dec 4, 2025
dc5a2b1
fix(envvar): fix envvar dropdown positioning, remove dead code (#2196)
waleedlatif1 Dec 4, 2025
ca3eb5b
fix(subscription): fixed text clipping on subscription panel (#2198)
waleedlatif1 Dec 4, 2025
8e7d8c9
fix(profile-pics): remove sharp dependency for serving profile pics i…
waleedlatif1 Dec 4, 2025
d22b578
fix(enterprise-plan): seats should be taken from metadata (#2200)
icecrasher321 Dec 5, 2025
1642ed7
improvement: modal UI (#2202)
emir-karabeg Dec 5, 2025
dcbdcb4
chore(deps): upgrade to nextjs 16 (#2203)
waleedlatif1 Dec 5, 2025
3b9f0f9
feat(error-notifications): workspace-level configuration of slack, em…
icecrasher321 Dec 5, 2025
414a54c
feat(i18n): update translations (#2204)
waleedlatif1 Dec 5, 2025
1b903f2
fix(images): updated helm charts with branding URL guidance, removed …
waleedlatif1 Dec 5, 2025
ca818a6
feat(admin): added admin APIs for admin management (#2206)
waleedlatif1 Dec 5, 2025
8ef9a45
fix(env-vars): refactor for workspace/personal env vars to work with …
icecrasher321 Dec 5, 2025
58251e2
feat(copilot): superagent (#2201)
Sg312 Dec 5, 2025
7101dc5
improvement: loading, optimistic actions (#2193)
emir-karabeg Dec 5, 2025
7752bea
fix(import): fix array errors on import/export (#2211)
Sg312 Dec 5, 2025
5d6c1f7
feat(tools): added more slack tools (#2212)
waleedlatif1 Dec 5, 2025
002713e
feat(i18n): update translations (#2208)
waleedlatif1 Dec 5, 2025
4fd5f00
fix(copilot): validation (#2215)
Sg312 Dec 5, 2025
fb4c982
fix(custom-bot-slack): dependsOn incorrectly set for bot_token (#2214)
icecrasher321 Dec 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(profile-pics): remove sharp dependency for serving profile pics i…
…n settings (#2199)
  • Loading branch information
waleedlatif1 authored Dec 4, 2025
commit 8e7d8c93e3b0796792d210c6ed373d7e7c14941c
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ export function General({ onOpenChange }: GeneralProps) {
alt={profile?.name || 'User'}
width={36}
height={36}
unoptimized
className={`h-full w-full object-cover transition-opacity duration-300 ${
isUploadingProfilePicture ? 'opacity-50' : 'opacity-100'
}`}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ export function TemplateProfile() {
alt={formData.name || 'Profile picture'}
width={36}
height={36}
unoptimized
className={`h-full w-full object-cover transition-opacity duration-300 ${
isUploadingProfilePicture ? 'opacity-50' : 'opacity-100'
}`}
Expand Down
Loading