1nwf / Produx-v2

Found unnecessary fragments JS-0424
Anti-pattern
Major
2 occurrences in this check
Fragments should contain more than one child - otherwise, there’s no need for a Fragment at all
12                    return (
13                        <div className="mb-10" key={idx}>
14                            {obj.images ? (
15                                <>16                                    <div className="card w-72 card-bordered card-compact lg:card-normal border-solid border-black bg-white">17                                        <figure>18                                            <img src={obj.images[0]} />19                                        </figure>20                                        <div className="card-body">21                                            <h2 className="card-title">22                                                {obj.name}23                                            </h2>24                                            <p>{obj.description}</p>25                                            <p>26                                                built by -{' '}27                                                <span className="text-blue-700 cursor-pointer">28                                                    @nwf29                                                </span>30                                            </p>31                                        </div>32                                    </div>33                                </>34                            ) : (
35                                <div className="h-20 w-20 bg-red-500 rounded-xl text-center">
36                                    <span className="text-white">
Fragments should contain more than one child - otherwise, there’s no need for a Fragment at all
 6        const initialProps = await Document.getInitialProps(ctx)
 7        return {
 8            ...initialProps,
 9            styles: <>{initialProps.styles}</>,10        }
11    }
12