79297858

Date: 2024-12-20 16:38:22
Score: 2.5
Natty:
Report link

could you please provide the entire reproducible code so I can try to replicate your issue? I tested the following code, and justify-between works as intended, so I’m unable to reproduce the problem.

import React, { Component } from 'react';
import { render } from 'react-dom';
import './style.css';

class App extends Component {
  constructor() {
    super();
    this.state = {
      name: 'React',
    };
  }

  render() {
    return (
      <>
        <nav className="w-full flex justify-between">
          <div>asdsad</div>
          <div>asdsad</div>
          <div>asdsad</div>
        </nav>
      </>
    );
  }
}

render(<App />, document.getElementById('root'));

Here on this image you can see the result:

Problem solved

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please provide
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Peter Plevko