File tree 2 files changed +6
-1
lines changed
__tests__/shared/components/Leaderboard/__snapshots__
src/shared/components/Leaderboard/PodiumSpot
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ exports[`Matches shallow shapshot 1`] = `
29
29
isCopilot = { false }
30
30
isTopGear = { false }
31
31
onUsernameClick = { null }
32
+ themeName = " Default"
32
33
/>
33
34
</div >
34
35
<div
@@ -48,6 +49,7 @@ exports[`Matches shallow shapshot 1`] = `
48
49
isCopilot = { false }
49
50
isTopGear = { false }
50
51
onUsernameClick = { null }
52
+ themeName = " Default"
51
53
/>
52
54
</div >
53
55
<div
@@ -67,6 +69,7 @@ exports[`Matches shallow shapshot 1`] = `
67
69
isCopilot = { false }
68
70
isTopGear = { false }
69
71
onUsernameClick = { null }
72
+ themeName = " Default"
70
73
/>
71
74
</div >
72
75
<div
@@ -86,6 +89,7 @@ exports[`Matches shallow shapshot 1`] = `
86
89
isCopilot = { false }
87
90
isTopGear = { false }
88
91
onUsernameClick = { null }
92
+ themeName = " Default"
89
93
/>
90
94
</div >
91
95
</div >
Original file line number Diff line number Diff line change @@ -220,12 +220,13 @@ PodiumSpot.propTypes = {
220
220
onUsernameClick : PT . func ,
221
221
isTopGear : PT . bool ,
222
222
isAlgo : PT . bool ,
223
- themeName : PT . string . isRequired ,
223
+ themeName : PT . string ,
224
224
} ;
225
225
226
226
PodiumSpot . defaultProps = {
227
227
isCopilot : false ,
228
228
onUsernameClick : null ,
229
229
isTopGear : false ,
230
230
isAlgo : false ,
231
+ themeName : 'Default' ,
231
232
} ;
You can’t perform that action at this time.
0 commit comments