File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/explorer/src/components/UserConsole Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export const SettleRailDialog: React.FC<SettleRailDialogProps> = ({
4343 isLoadingBlockNumber,
4444 } = useRailSettlementCalculations ( rail , userAddress ) ;
4545
46- const canSettle = isPayer && ! isSettling && ! isLoadingBlockNumber && epochsSinceLastSettlement > 0n ;
46+ const canSettle = ! isSettling && ! isLoadingBlockNumber && epochsSinceLastSettlement > 0n ;
4747
4848 const handleSettle = async ( ) => {
4949 if ( isLoadingBlockNumber || currentEpoch === 0n ) {
@@ -137,7 +137,7 @@ export const SettleRailDialog: React.FC<SettleRailDialogProps> = ({
137137 </ div >
138138
139139 { /* Warning */ }
140- { isPayer && epochsSinceLastSettlement === 0n && (
140+ { epochsSinceLastSettlement === 0n && (
141141 < div className = 'flex gap-2 p-3 rounded-lg bg-orange-500/10 border border-orange-500/20' >
142142 < AlertCircle className = 'h-4 w-4 text-orange-600 dark:text-orange-400 flex-shrink-0 mt-0.5' />
143143 < p className = 'text-xs text-orange-600 dark:text-orange-400' >
You can’t perform that action at this time.
0 commit comments