Typo fix in InterpolationAnimatedNode for debugging (#51460)

Summary:
I noticed a missing debugging text while working on https://github.com/facebook/react-native/issues/50496. It was a typo. I though I might as well send a PR.

## Changelog:

[Android] [Fixed] - Fixing a typo in InterpolationAnimatedNode for debug text.

<!-- Help reviewers and the release process by writing your own changelog entry.
Pick one each for the category and type tags:

[ANDROID|GENERAL|IOS|INTERNAL] [BREAKING|ADDED|CHANGED|DEPRECATED|REMOVED|FIXED|SECURITY] - Message

For more details, see:
https://reactnative.dev/contributing/changelogs-in-pull-requests

Pull Request resolved: https://github.com/facebook/react-native/pull/51460

Reviewed By: cortinico, shwanton

Differential Revision: D75005096

Pulled By: javache

fbshipit-source-id: 390452b2b0c6eabfa003b9c95719649c79444d3a
This commit is contained in:
kocburak
2025-05-19 11:02:47 -07:00
committed by Facebook GitHub Bot
parent 3306c3b962
commit a703d4cfc1
@@ -96,7 +96,7 @@ internal class InterpolationAnimatedNode(config: ReadableMap) : ValueAnimatedNod
override fun getAnimatedObject(): Any? = objectValue
override fun prettyPrint(): String =
"InterpolationAnimatedNode[$tag] super: {super.prettyPrint()}"
"InterpolationAnimatedNode[$tag] super: ${super.prettyPrint()}"
companion object {
const val EXTRAPOLATE_TYPE_IDENTITY: String = "identity"