persona-community-5/.pnpm-store/v3/files/17/59bbbf72600202aa664b695a0d327b69c8e8ec21b2b54ac6dce454ca74b6ae169dd25e5b0978dcc10a554b37dfd53dc0ab3ef21aaa6f93266f11405853f63f
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

18 lines
522 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.InfoContact = void 0;
const utils_1 = require("../utils");
const InfoContact = () => {
return {
Info(info, { report, location }) {
if (!info.contact) {
report({
message: (0, utils_1.missingRequiredField)('Info', 'contact'),
location: location.child('contact').key(),
});
}
},
};
};
exports.InfoContact = InfoContact;