Use dangerous util

This commit is contained in:
Eric Bailey
2025-01-07 10:38:55 -06:00
parent 964fc20244
commit 31673b6458
@@ -272,7 +272,10 @@ let NotificationFeedItem = ({
if ( if (
item.notification.author.viewer?.following && item.notification.author.viewer?.following &&
AppBskyGraphFollow.isValidRecord(item.notification.record) atp.dangerousIsType<AppBskyGraphFollow.Record>(
item.notification.record,
AppBskyGraphFollow.isRecord,
)
) { ) {
let followingTimestamp let followingTimestamp
try { try {
@@ -724,7 +727,13 @@ function ExpandedAuthorsList({
function AdditionalPostText({post}: {post?: AppBskyFeedDefs.PostView}) { function AdditionalPostText({post}: {post?: AppBskyFeedDefs.PostView}) {
const pal = usePalette('default') const pal = usePalette('default')
if (post && AppBskyFeedPost.isValidRecord(post?.record)) { if (
post &&
atp.dangerousIsType<AppBskyFeedPost.Record>(
post?.record,
AppBskyFeedPost.isRecord,
)
) {
const text = post.record.text const text = post.record.text
return ( return (