Skip to content

Commit

Permalink
fix: lowercase
Browse files Browse the repository at this point in the history
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
  • Loading branch information
solracsf authored Jul 9, 2024
1 parent 2250573 commit ba5bd15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/settings/FolderGroups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface FolderGroupsProps {
export function FolderGroups({groups, allGroups = [], allCircles = [], onAddGroup, removeGroup, edit, showEdit, onSetPermissions}: FolderGroupsProps) {
const isCirclesEnabled = loadState('groupfolders', 'isCirclesEnabled', false)
const groupHeader = isCirclesEnabled
? t('groupfolders', 'Group or Team')
? t('groupfolders', 'Group or team')
: t('groupfolders', 'Group')

// Format the selected groups with the displayName
Expand Down Expand Up @@ -137,7 +137,7 @@ function AdminGroupSelect({allGroups, allCircles, onChange}: CircleGroupSelectPr
const options = [...groups, ...circles]

const placeholder = isCirclesEnabled
? t('groupfolders', 'Add group or Team')
? t('groupfolders', 'Add group or team')
: t('groupfolders', 'Add group')

/* @ts-expect-error Typescript error due to async react component */
Expand Down

0 comments on commit ba5bd15

Please sign in to comment.