File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ Item.propTypes = {
95
95
src : PropTypes . string . isRequired ,
96
96
alt : PropTypes . string ,
97
97
} ) . isRequired ,
98
- name : PropTypes . string ,
98
+ name : PropTypes . string . isRequired ,
99
99
slug : PropTypes . string ,
100
100
} ) ,
101
101
orientation : PropTypes . oneOf ( [ 'horizontal' , 'vertical' ] ) ,
@@ -117,10 +117,8 @@ Item.defaultProps = {
117
117
description : '' ,
118
118
id : null ,
119
119
img : {
120
- src : '' ,
121
120
alt : '' ,
122
121
} ,
123
- name : '' ,
124
122
slug : '' ,
125
123
} ,
126
124
orientation : 'vertical' ,
Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
2
import Link from 'next/link'
3
3
import PropTypes from 'prop-types'
4
+ import Button from '../../components/Button/Button'
4
5
import './linked-button.css'
5
6
6
7
/**
You can’t perform that action at this time.
0 commit comments