This commit is contained in:
tangly1024.com
2023-06-07 15:44:26 +08:00
parent 00d32c81e0
commit d98d1f4c4b
4 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ import React from 'react'
import Link from 'next/link'
export const LayoutTag = (props) => {
const tag = props.tagOptions.find((t) => {
const tag = props?.tagOptions?.find((t) => {
return t.name === props.tag
})