We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b97a12 commit b5a2f4eCopy full SHA for b5a2f4e
1 file changed
src/components/NotifyCompRemoteBar/NotifyCompRemoteBar.tsx
@@ -80,7 +80,7 @@ export function NotifyCompRemoteBar({ competitionId }: NotifyCompRemoteBarProps)
80
disabled={remote.isSaving || !remote.previousGroup}
81
aria-label="Go back to previous remote activity"
82
onClick={() => runSwitch('previous')}>
83
- ⏮
+ <span className="fa fa-arrow-left" aria-hidden="true" />
84
</button>
85
86
<button
@@ -102,7 +102,7 @@ export function NotifyCompRemoteBar({ competitionId }: NotifyCompRemoteBarProps)
102
disabled={remote.isSaving || !remote.nextGroup}
103
aria-label="Go to next remote activity"
104
onClick={() => runSwitch('next')}>
105
- ⏭
+ <span className="fa fa-arrow-right" aria-hidden="true" />
106
107
</div>
108
0 commit comments