Skip to content

Commit

Permalink
ESLint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
3388ShubinPavel committed Feb 26, 2025
1 parent feb0c90 commit b29ca2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/presentation/components/team/Team.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { NoteId } from '@/domain/entities/Note';
import { Section, Row, Avatar } from 'codex-ui/vue';
import RoleSelect from './RoleSelect.vue';
import { useI18n } from 'vue-i18n';
import {computed, defineProps} from "vue";
import { computed, defineProps } from 'vue';
const { t } = useI18n();
Expand Down Expand Up @@ -88,7 +88,7 @@ const sortMembers = (members: TeamMember[]): TeamMember[] => {
});
};
const sortedTeam = computed(()=>sortMembers(props.team))
const sortedTeam = computed(() => sortMembers(props.team));
</script>

<style scoped>
Expand Down

0 comments on commit b29ca2d

Please sign in to comment.