fix prop type for MKRolePreview

This commit is contained in:
Hazelnoot 2025-05-10 12:30:19 -04:00
parent 20e9c02431
commit b9109e5bb3

View file

@ -41,7 +41,7 @@ import { i18n } from '@/i18n.js';
const props = withDefaults(defineProps<{ const props = withDefaults(defineProps<{
role: Misskey.entities.Role; role: Misskey.entities.Role;
forModeration: boolean; forModeration: boolean;
detailed: boolean; detailed?: boolean;
}>(), { }>(), {
detailed: true, detailed: true,
}); });