We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec64d53 commit b58c0e7Copy full SHA for b58c0e7
packages/round-manager/src/features/round/ViewApplicationPage.tsx
@@ -58,6 +58,7 @@ import {
58
formatDateWithOrdinal,
59
getRoundStrategyType,
60
getUTCTime,
61
+ isLitUnavailable,
62
useAllo,
63
VerifiedCredentialState,
64
} from "common";
@@ -333,7 +334,7 @@ export default function ViewApplicationPage() {
333
334
335
if (application?.answers && application.answers.length > 0) {
336
for (let _answerBlock of application.answers) {
- if (_answerBlock.encryptedAnswer) {
337
+ if (_answerBlock.encryptedAnswer && !isLitUnavailable(round.chainId!)) {
338
try {
339
const encryptedAnswer = _answerBlock.encryptedAnswer;
340
const base64EncryptedString = [
0 commit comments