Skip to content

Commit aa9ed1d

Browse files
committed
Fix memo name
1 parent 226dbc4 commit aa9ed1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/result/PidNameDisplay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useSWRImmutable from "swr/immutable"
88
* @param pid A valid PID
99
* @constructor
1010
*/
11-
export const PidNameDisplay = memo(function PidDisplay({ pid }: { pid: string }) {
11+
export const PidNameDisplay = memo(function PidNameDisplay({ pid }: { pid: string }) {
1212
const resolveContent = useCallback(async (pid: string) => {
1313
if (PidResolver.isPID(pid)) {
1414
const content = await pidResolver.resolve(pid)

0 commit comments

Comments
 (0)